Home
last modified time | relevance | path

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

12345678910>>...30

/linux/ipc/
H A Dsyscall.c20 int ksys_ipc(unsigned int call, int first, unsigned long second, in ksys_ipc() argument
31 second, NULL); in ksys_ipc()
34 return ksys_semtimedop(first, ptr, second, in ksys_ipc()
37 return compat_ksys_semtimedop(first, ptr, second, in ksys_ipc()
43 return ksys_semget(first, second, third); in ksys_ipc()
50 return ksys_old_semctl(first, second, third, arg); in ksys_ipc()
55 second, third); in ksys_ipc()
67 return ksys_msgrcv(first, tmp.msgp, second, in ksys_ipc()
73 second, fifth, third); in ksys_ipc()
76 return ksys_msgget((key_t) first, second); in ksys_ipc()
[all …]
/linux/lib/
H A Dsiphash.c133 u64 siphash_2u64(const u64 first, const u64 second, const siphash_key_t *key) in siphash_2u64() argument
140 v3 ^= second; in siphash_2u64()
143 v0 ^= second; in siphash_2u64()
155 u64 siphash_3u64(const u64 first, const u64 second, const u64 third, in siphash_3u64() argument
163 v3 ^= second; in siphash_3u64()
166 v0 ^= second; in siphash_3u64()
183 u64 siphash_4u64(const u64 first, const u64 second, const u64 third, in siphash_4u64() argument
191 v3 ^= second; in siphash_4u64()
194 v0 ^= second; in siphash_4u64()
215 u64 siphash_3u32(const u32 first, const u32 second, const u32 third, in siphash_3u32() argument
[all …]
H A 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/arch/alpha/lib/
H A Dcsum_partial_copy.c138 unsigned long second; in csum_partial_cfu_dest_aligned() local
140 if (__get_word(ldq_u, second, src+1)) in csum_partial_cfu_dest_aligned()
145 extqh(second, soff, first); in csum_partial_cfu_dest_aligned()
148 first = second; in csum_partial_cfu_dest_aligned()
158 unsigned long second; in csum_partial_cfu_dest_aligned() local
159 if (__get_word(ldq_u, second, lastsrc)) in csum_partial_cfu_dest_aligned()
163 extqh(second, soff, first); in csum_partial_cfu_dest_aligned()
252 unsigned long second, word; in csum_partial_cfu_unaligned() local
255 if (__get_word(ldq_u, second, src+1)) in csum_partial_cfu_unaligned()
260 extqh(second, soff, first); in csum_partial_cfu_unaligned()
[all …]
/linux/arch/riscv/kernel/tests/module_test/
H A Dtest_uleb128.S9 lw a0, second
22 second: label
23 .reloc second, R_RISCV_SET_ULEB128, second
24 .reloc second, R_RISCV_SUB_ULEB128, first
H A Dtest_sub32.S14 second: label
18 .reloc sub32, R_RISCV_ADD32, second
H A Dtest_sub16.S14 second: label
18 .reloc sub16, R_RISCV_ADD16, second
H A Dtest_sub8.S14 second: label
18 .reloc sub8, R_RISCV_ADD8, second
H A Dtest_sub6.S14 second: label
18 .reloc sub6, R_RISCV_SET6, second
H A Dtest_sub64.S18 second: label
22 .reloc sub64, R_RISCV_ADD64, second
/linux/arch/arm/include/asm/
H A Dopcodes.h151 #define __opcode_thumb32_compose(first, second) ( \ argument
153 | ___opcode_identity32(___opcode_identity16(second)) \
157 #define ___asm_opcode_thumb32_compose(first, second) ( \ argument
159 | ___asm_opcode_identity32(___asm_opcode_identity16(second)) \
225 #define ___inst_thumb32(first, second) .short first, second
229 #define ___inst_thumb32(first, second) \ argument
230 ".short " __stringify(first) ", " __stringify(second) "\n\t"
/linux/fs/isofs/
H A Dutil.c21 int year, month, day, hour, minute, second, tz; in iso_date() local
33 second = ((p[12] - '0') * 10 + (p[13] - '0')); in iso_date()
42 second = p[5]; in iso_date()
51 ts.tv_sec = mktime64(year+1900, month, day, hour, minute, second); in iso_date()
/linux/arch/arm/kernel/
H A Dinsn.c11 unsigned long first, second; in __arm_gen_branch_thumb2() local
30 second = 0x9000 | (j1 << 13) | (j2 << 11) | imm11; in __arm_gen_branch_thumb2()
32 second |= 1 << 14; in __arm_gen_branch_thumb2()
34 return __opcode_thumb32_compose(first, second); in __arm_gen_branch_thumb2()
/linux/fs/fat/
H A Dmisc.c208 time64_t second; in fat_time_fat2unix() local
221 second = (time & 0x1f) << 1; in fat_time_fat2unix()
222 second += ((time >> 5) & 0x3f) * SECS_PER_MIN; in fat_time_fat2unix()
223 second += (time >> 11) * SECS_PER_HOUR; in fat_time_fat2unix()
224 second += (time64_t)(year * 365 + leap_day in fat_time_fat2unix()
228 second += fat_tz_offset(sbi); in fat_time_fat2unix()
231 ts->tv_sec = second + (time_cs / 100); in fat_time_fat2unix()
234 ts->tv_sec = second; in fat_time_fat2unix()
/linux/arch/sparc/kernel/
H A Dsys_sparc_64.c351 SYSCALL_DEFINE6(sparc_ipc, unsigned int, call, int, first, unsigned long, second, in SYSCALL_DEFINE6() argument
364 (unsigned int)second, NULL); in SYSCALL_DEFINE6()
367 err = ksys_semtimedop(first, ptr, (unsigned int)second, in SYSCALL_DEFINE6()
372 err = ksys_semget(first, (int)second, (int)third); in SYSCALL_DEFINE6()
375 err = ksys_old_semctl(first, second, in SYSCALL_DEFINE6()
388 err = ksys_msgsnd(first, ptr, (size_t)second, in SYSCALL_DEFINE6()
392 err = ksys_msgrcv(first, ptr, (size_t)second, fifth, in SYSCALL_DEFINE6()
396 err = ksys_msgget((key_t)first, (int)second); in SYSCALL_DEFINE6()
399 err = ksys_old_msgctl(first, (int)second | IPC_64, ptr); in SYSCALL_DEFINE6()
410 err = do_shmat(first, ptr, (int)second, &raddr, SHMLBA); in SYSCALL_DEFINE6()
[all …]
H A Dunaligned_64.c451 u64 first = 0, second = 0; in handle_ldf_stq() local
462 second = *(u64 *)&f->regs[freg+2]; in handle_ldf_stq()
477 first = __swab64p(&second); in handle_ldf_stq()
478 second = tmp; in handle_ldf_stq()
490 __put_user (second >> 32, (u32 __user *)(addr + 8)) || in handle_ldf_stq()
491 __put_user ((u32)second, (u32 __user *)(addr + 12))) { in handle_ldf_stq()
614 u32 first, second; in handle_lddfmna() local
620 first = second = 0; in handle_lddfmna()
623 err = get_user(second, (u32 __user *)(sfar + 4)); in handle_lddfmna()
627 first = second = 0; in handle_lddfmna()
[all …]
/linux/Documentation/scsi/
H A Daha152x.rst52 override for the second controller
90 configuration override for second controller
95 IOPORT for first and second controller
98 IRQ for first and second controller
101 SCSIID for first and second controller
104 allow targets to disconnect for first and second controller
107 use parity for first and second controller
110 enable synchronous transfers for first and second controller
113 reset DELAY for first and second controller
116 enable extended translation for first and second controller
/linux/drivers/rtc/
H A Drtc-wilco-ec.c50 u8 second; member
85 u8 second; member
107 tm->tm_sec = rtc.second; in wilco_ec_rtc_read()
145 rtc.second = bin2bcd(tm->tm_sec); in wilco_ec_rtc_write()
H A Drtc-mv.c71 unsigned int year, month, day, hour, minute, second, wday; in mv_rtc_read_time() local
76 second = rtc_time & 0x7f; in mv_rtc_read_time()
85 tm->tm_sec = bcd2bin(second); in mv_rtc_read_time()
102 unsigned int year, month, day, hour, minute, second, wday; in mv_rtc_read_alarm() local
107 second = rtc_time & 0x7f; in mv_rtc_read_alarm()
116 alm->time.tm_sec = bcd2bin(second); in mv_rtc_read_alarm()
H A Drtc-efi.c60 eft->second = wtime->tm_sec; in convert_to_efi_time()
71 if (eft->second >= 60) in convert_from_efi_time()
73 wtime->tm_sec = eft->second; in convert_from_efi_time()
161 eft.hour, eft.minute, eft.second, eft.nanosecond, in efi_procfs()
/linux/tools/testing/selftests/bpf/progs/
H A Dtest_siphash.h51 static inline u64 siphash_2u64(const u64 first, const u64 second, const siphash_key_t *key) in siphash_2u64() argument
58 v3 ^= second; in siphash_2u64()
61 v0 ^= second; in siphash_2u64()
/linux/sound/firewire/
H A Damdtp-stream-trace.h21 __field(unsigned int, second)
36 __entry->second = cycles / CYCLES_PER_SECOND;
60 __entry->second,
/linux/Documentation/devicetree/bindings/sound/
H A Dmvebu-audio.txt15 (named "pll_regs") and the second one ("soc_ctrl") - for register
21 the data flow, and the second for errors.
25 The second one is optional and defines an external clock.
/linux/Documentation/hid/
H A Dhidreport-parsing.rst34 function is ``Usage Page``, thus for parsing the value 0x01 in the second byte
37 The second number is the actual data, and its meaning can be found in
42 Moving now to the second two bytes, and following the same scheme,
/linux/arch/arm/boot/dts/marvell/
H A Dkirkwood-openrd.dtsi61 * mode for the second UART.
66 * To use the second UART, you need to change also
78 * SelUARTorSD selects between the second UART

12345678910>>...30