Home
last modified time | relevance | path

Searched refs:second (Results 1 – 25 of 35) sorted by relevance

12

/linux-4.19.296/lib/
Dsiphash.c134 u64 siphash_2u64(const u64 first, const u64 second, const siphash_key_t *key) in siphash_2u64() argument
141 v3 ^= second; in siphash_2u64()
144 v0 ^= second; in siphash_2u64()
156 u64 siphash_3u64(const u64 first, const u64 second, const u64 third, in siphash_3u64() argument
164 v3 ^= second; in siphash_3u64()
167 v0 ^= second; in siphash_3u64()
184 u64 siphash_4u64(const u64 first, const u64 second, const u64 third, in siphash_4u64() argument
192 v3 ^= second; in siphash_4u64()
195 v0 ^= second; in siphash_4u64()
216 u64 siphash_3u32(const u32 first, const u32 second, const u32 third, in siphash_3u32() argument
[all …]
Dkasprintf.c17 unsigned int first, second; in kvasprintf() local
29 second = vsnprintf(p, first+1, fmt, ap); in kvasprintf()
30 WARN(first != second, "different return values (%u and %u) from vsnprintf(\"%s\", ...)", in kvasprintf()
31 first, second, fmt); in kvasprintf()
/linux-4.19.296/fs/fat/
Dmisc.c193 time64_t second; in fat_time_fat2unix() local
206 second = (time & 0x1f) << 1; in fat_time_fat2unix()
207 second += ((time >> 5) & 0x3f) * SECS_PER_MIN; in fat_time_fat2unix()
208 second += (time >> 11) * SECS_PER_HOUR; in fat_time_fat2unix()
209 second += (time64_t)(year * 365 + leap_day in fat_time_fat2unix()
214 second += sys_tz.tz_minuteswest * SECS_PER_MIN; in fat_time_fat2unix()
216 second -= sbi->options.time_offset * SECS_PER_MIN; in fat_time_fat2unix()
219 ts->tv_sec = second + (time_cs / 100); in fat_time_fat2unix()
222 ts->tv_sec = second; in fat_time_fat2unix()
/linux-4.19.296/fs/isofs/
Dutil.c21 int year, month, day, hour, minute, second, tz; in iso_date() local
29 second = p[5]; in iso_date()
36 crtime = mktime64(year+1900, month, day, hour, minute, second); in iso_date()
/linux-4.19.296/drivers/rtc/
Drtc-efi.c65 eft->second = wtime->tm_sec; in convert_to_efi_time()
76 if (eft->second >= 60) in convert_from_efi_time()
78 wtime->tm_sec = eft->second; in convert_from_efi_time()
211 eft.hour, eft.minute, eft.second, eft.nanosecond, in efi_procfs()
227 alm.hour, alm.minute, alm.second, alm.nanosecond, in efi_procfs()
Drtc-mv.c74 unsigned int year, month, day, hour, minute, second, wday; in mv_rtc_read_time() local
79 second = rtc_time & 0x7f; in mv_rtc_read_time()
88 tm->tm_sec = bcd2bin(second); in mv_rtc_read_time()
105 unsigned int year, month, day, hour, minute, second, wday; in mv_rtc_read_alarm() local
110 second = rtc_time & 0x7f; in mv_rtc_read_alarm()
119 alm->time.tm_sec = bcd2bin(second); in mv_rtc_read_alarm()
Drtc-ds1742.c87 unsigned int year, month, day, hour, minute, second, week; in ds1742_rtc_read_time() local
95 second = readb(ioaddr + RTC_SECONDS) & RTC_SECONDS_MASK; in ds1742_rtc_read_time()
104 tm->tm_sec = bcd2bin(second); in ds1742_rtc_read_time()
Drtc-ds1553.c102 unsigned int year, month, day, hour, minute, second, week; in ds1553_rtc_read_time() local
110 second = readb(ioaddr + RTC_SECONDS) & RTC_SECONDS_MASK; in ds1553_rtc_read_time()
119 tm->tm_sec = bcd2bin(second); in ds1553_rtc_read_time()
Drtc-stk17ta8.c101 unsigned int year, month, day, hour, minute, second, week; in stk17ta8_rtc_read_time() local
112 second = readb(ioaddr + RTC_SECONDS) & RTC_SECONDS_MASK; in stk17ta8_rtc_read_time()
121 tm->tm_sec = bcd2bin(second); in stk17ta8_rtc_read_time()
Drtc-ds3232.c102 unsigned int year, month, day, hour, minute, second; in ds3232_read_time() local
110 second = buf[0]; in ds3232_read_time()
126 time->tm_sec = bcd2bin(second); in ds3232_read_time()
Drtc-mpc5121.c47 u8 second; /* RTC + 0x13 */ member
158 tm->tm_sec = in_8(&regs->second); in mpc5200_rtc_read_time()
/linux-4.19.296/fs/udf/
Dudftime.c61 src.second); in udf_disk_stamp_to_time()
90 dest->second = tm.tm_sec; in udf_time_to_disk_stamp()
/linux-4.19.296/drivers/of/unittest-data/
Dtests-phandle.dtsi49 phandle-list-names = "first", "second", "third";
57 unterminated-string-list = "first", "second", [40 41 42 43];
/linux-4.19.296/drivers/char/
Defirtc.c110 eft->second = wtime->tm_sec; in convert_to_efi_time()
120 wtime->tm_sec = eft->second; in convert_from_efi_time()
321 eft.hour, eft.minute, eft.second, eft.nanosecond, in efi_rtc_proc_show()
338 alm.hour, alm.minute, alm.second, alm.nanosecond, in efi_rtc_proc_show()
/linux-4.19.296/drivers/auxdisplay/
Dcfag12864b.c108 unsigned char second) in cfag12864b_setcontrollers() argument
115 if (second) in cfag12864b_setcontrollers()
/linux-4.19.296/fs/ext4/
Dmove_extent.c51 ext4_double_down_write_data_sem(struct inode *first, struct inode *second) in ext4_double_down_write_data_sem() argument
53 if (first < second) { in ext4_double_down_write_data_sem()
55 down_write_nested(&EXT4_I(second)->i_data_sem, I_DATA_SEM_OTHER); in ext4_double_down_write_data_sem()
57 down_write(&EXT4_I(second)->i_data_sem); in ext4_double_down_write_data_sem()
/linux-4.19.296/fs/minix/
DKconfig8 but has been superseded by the second extended file system ext2fs.
/linux-4.19.296/drivers/media/rc/
Dimon.c684 unsigned int second) in send_set_imon_clock() argument
703 clock_enable_pkt[0][6] = second; in send_set_imon_clock()
730 clock_enable_pkt[0][6] = second; in send_set_imon_clock()
837 unsigned int year, month, day, dow, hour, minute, second; in store_imon_clock() local
853 &hour, &minute, &second) != 7) { in store_imon_clock()
860 (hour > 23) || (minute > 59) || (second > 59)) { in store_imon_clock()
866 hour, minute, second); in store_imon_clock()
/linux-4.19.296/include/acpi/
Dacbuffer.h50 u8 second; member
/linux-4.19.296/fs/gfs2/
Dlog.c53 unsigned int first, second; in gfs2_struct2blk() local
59 second = (sdp->sd_sb.sb_bsize - in gfs2_struct2blk()
61 blks += DIV_ROUND_UP(nstruct - first, second); in gfs2_struct2blk()
/linux-4.19.296/usr/
DKconfig187 It's compression ratio is the second poorest amongst the choices. The
189 decompression speed is the second fastest and it's compression speed
/linux-4.19.296/fs/jffs2/
DKconfig6 JFFS2 is the second generation of the Journalling Flash File System
/linux-4.19.296/include/linux/
Dcompat.h814 asmlinkage long compat_sys_msgctl(int first, int second, void __user *uptr);
826 asmlinkage long compat_sys_shmctl(int first, int second, void __user *uptr);
/linux-4.19.296/include/uapi/linux/
Dcdrom.h158 __u8 second; member
/linux-4.19.296/drivers/cdrom/
Dcdrom.c1571 75 * (addr->msf.second - 2 + 60 * addr->msf.minute); in sanitize_format()
1577 addr->msf.second = lba % 60; in sanitize_format()
2062 subchnl->cdsc_reladdr.msf.second = cgc.buffer[14]; in cdrom_read_subchannel()
2065 subchnl->cdsc_absaddr.msf.second = cgc.buffer[10]; in cdrom_read_subchannel()
3026 ra.addr.msf.second, in mmc_ioctl_cdrom_read_audio()

12