Searched refs:__tmp (Results 1 – 18 of 18) sorted by relevance
| /Linux-v5.4/include/linux/ |
| D | kfifo.h | 126 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 …]
|
| D | typecheck.h | 21 ({ typeof(type) __tmp = function; \ 22 (void)__tmp; \
|
| D | rcupdate.h | 396 typeof(ptr) __tmp = rcu_dereference_protected((rcu_ptr), (c)); \ 398 (ptr) = __tmp; \
|
| D | kernel.h | 976 do { typeof(a) __tmp = (a); (a) = (b); (b) = __tmp; } while (0)
|
| /Linux-v5.4/arch/arc/include/uapi/asm/ |
| D | swab.h | 70 ({ 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/ |
| D | midcomms.c | 63 } __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/ |
| D | uaccess.h | 107 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/ |
| D | termios.h | 20 unsigned short __tmp; \ 21 get_user(__tmp,&(termio)->x); \ 22 *(unsigned short *) &(termios)->x = __tmp; \
|
| /Linux-v5.4/arch/ia64/include/asm/ |
| D | termios.h | 26 unsigned short __tmp; \ 27 get_user(__tmp,&(termio)->x); \ 28 *(unsigned short *) &(termios)->x = __tmp; \
|
| /Linux-v5.4/arch/mips/include/asm/ |
| D | div64.h | 24 unsigned long __cf, __tmp, __tmp2, __i; \ 57 : "=&r" (__mod32), "=&r" (__tmp), \
|
| D | io.h | 336 type __tmp; \ 349 : "=r" (__tmp) \
|
| D | mipsregs.h | 1506 unsigned long long __tmp = (val); \ 1517 : "+r" (__tmp)); \ 1528 : "+r" (__tmp)); \ 1539 : "+r" (__tmp)); \
|
| /Linux-v5.4/arch/s390/include/asm/ |
| D | processor.h | 339 __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/ |
| D | cmpxchg.h | 42 __typeof__(new) __tmp; \ 56 : "=&r" (__ret), "=&r" (__tmp) \
|
| /Linux-v5.4/include/net/sctp/ |
| D | auth.h | 59 #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/ |
| D | debug.c | 464 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/ |
| D | builtin-c2c.c | 2625 #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/ |
| D | send.c | 590 __le##bits __tmp = cpu_to_le##bits(value); \ 591 return tlv_put(sctx, attr, &__tmp, sizeof(__tmp)); \
|