Home
last modified time | relevance | path

Searched refs:__tmp (Results 1 – 18 of 18) sorted by relevance

/Linux-v5.4/include/linux/
Dkfifo.h126 typeof(&(fifo)) __tmp = &(fifo); \
127 struct __kfifo *__kfifo = &__tmp->kfifo; \
130 __kfifo->mask = __is_kfifo_ptr(__tmp) ? 0 : ARRAY_SIZE(__tmp->buf) - 1;\
131 __kfifo->esize = sizeof(*__tmp->buf); \
132 __kfifo->data = __is_kfifo_ptr(__tmp) ? NULL : __tmp->buf; \
211 typeof((fifo) + 1) __tmp = (fifo); \
212 __tmp->kfifo.in = __tmp->kfifo.out = 0; \
225 typeof((fifo) + 1) __tmp = (fifo); \
226 __tmp->kfifo.out = __tmp->kfifo.in; \
281 typeof((fifo) + 1) __tmp = (fifo); \
[all …]
Dtypecheck.h21 ({ typeof(type) __tmp = function; \
22 (void)__tmp; \
Drcupdate.h396 typeof(ptr) __tmp = rcu_dereference_protected((rcu_ptr), (c)); \
398 (ptr) = __tmp; \
Dkernel.h976 do { typeof(a) __tmp = (a); (a) = (b); (b) = __tmp; } while (0)
/Linux-v5.4/arch/arc/include/uapi/asm/
Dswab.h70 ({ unsigned long __in = (x), __tmp; \
71 __tmp = __in << 8 | __in >> 24; /* ror tmp,in,24 */ \
73 __tmp ^= __in; \
74 __tmp &= 0xff00ff; \
75 __tmp ^ __in; \
/Linux-v5.4/fs/dlm/
Dmidcomms.c63 } __tmp; in dlm_process_incoming_buffer() local
64 union dlm_packet *p = &__tmp.p; in dlm_process_incoming_buffer()
112 if (msglen > sizeof(__tmp) && p == &__tmp.p) { in dlm_process_incoming_buffer()
130 if (p != &__tmp.p) in dlm_process_incoming_buffer()
/Linux-v5.4/arch/riscv/include/asm/
Duaccess.h107 uintptr_t __tmp; \
125 : "+r" (err), "=&r" (__x), "=r" (__tmp) \
139 uintptr_t __tmp; \
161 "=r" (__tmp) \
243 uintptr_t __tmp; \
260 : "+r" (err), "=r" (__tmp), "=m" (*(ptr)) \
273 uintptr_t __tmp; \
292 : "+r" (err), "=r" (__tmp), \
/Linux-v5.4/arch/parisc/include/asm/
Dtermios.h20 unsigned short __tmp; \
21 get_user(__tmp,&(termio)->x); \
22 *(unsigned short *) &(termios)->x = __tmp; \
/Linux-v5.4/arch/ia64/include/asm/
Dtermios.h26 unsigned short __tmp; \
27 get_user(__tmp,&(termio)->x); \
28 *(unsigned short *) &(termios)->x = __tmp; \
/Linux-v5.4/arch/mips/include/asm/
Ddiv64.h24 unsigned long __cf, __tmp, __tmp2, __i; \
57 : "=&r" (__mod32), "=&r" (__tmp), \
Dio.h336 type __tmp; \
349 : "=r" (__tmp) \
Dmipsregs.h1506 unsigned long long __tmp = (val); \
1517 : "+r" (__tmp)); \
1528 : "+r" (__tmp)); \
1539 : "+r" (__tmp)); \
/Linux-v5.4/arch/s390/include/asm/
Dprocessor.h339 __typeof__(dest) __tmp = (val); \
341 BUILD_BUG_ON(sizeof(__tmp) != sizeof(val)); \
342 memcpy_absolute(&(dest), &__tmp, sizeof(__tmp)); \
/Linux-v5.4/arch/csky/include/asm/
Dcmpxchg.h42 __typeof__(new) __tmp; \
56 : "=&r" (__ret), "=&r" (__tmp) \
/Linux-v5.4/include/net/sctp/
Dauth.h59 #define key_for_each_safe(__key, __tmp, __list_head) \ argument
60 list_for_each_entry_safe(__key, __tmp, __list_head, key_list)
/Linux-v5.4/drivers/net/wireless/ath/carl9170/
Ddebug.c464 u32 __tmp[ARRAY_SIZE(name##_regs)]; \
468 __tmp[__i] = name##_regs[__i].reg; \
474 __tmp, ar->debug.stats.name##_counter); \
/Linux-v5.4/tools/perf/
Dbuiltin-c2c.c2625 #define for_each_token(__tok, __buf, __sep, __tmp) \ argument
2626 for (__tok = strtok_r(__buf, __sep, &__tmp); __tok; \
2627 __tok = strtok_r(NULL, __sep, &__tmp))
/Linux-v5.4/fs/btrfs/
Dsend.c590 __le##bits __tmp = cpu_to_le##bits(value); \
591 return tlv_put(sctx, attr, &__tmp, sizeof(__tmp)); \