Searched refs:__tmp (Results 1 – 8 of 8) sorted by relevance
/linux-4.19.296/include/linux/ |
D | kfifo.h | 140 typeof(&(fifo)) __tmp = &(fifo); \ 141 struct __kfifo *__kfifo = &__tmp->kfifo; \ 144 __kfifo->mask = __is_kfifo_ptr(__tmp) ? 0 : ARRAY_SIZE(__tmp->buf) - 1;\ 145 __kfifo->esize = sizeof(*__tmp->buf); \ 146 __kfifo->data = __is_kfifo_ptr(__tmp) ? NULL : __tmp->buf; \ 225 typeof((fifo) + 1) __tmp = (fifo); \ 226 __tmp->kfifo.in = __tmp->kfifo.out = 0; \ 239 typeof((fifo) + 1) __tmp = (fifo); \ 240 __tmp->kfifo.out = __tmp->kfifo.in; \ 295 typeof((fifo) + 1) __tmp = (fifo); \ [all …]
|
D | typecheck.h | 21 ({ typeof(type) __tmp = function; \ 22 (void)__tmp; \
|
D | rcupdate.h | 426 typeof(ptr) __tmp = rcu_dereference_protected((rcu_ptr), (c)); \ 428 __tmp; \ 442 typeof(ptr) __tmp = rcu_dereference_protected((rcu_ptr), (c)); \ 444 (ptr) = __tmp; \
|
D | futex.h | 41 u64 __tmp; member
|
D | kernel.h | 981 do { typeof(a) __tmp = (a); (a) = (b); (b) = __tmp; } while (0)
|
/linux-4.19.296/fs/dlm/ |
D | midcomms.c | 65 } __tmp; in dlm_process_incoming_buffer() local 66 union dlm_packet *p = &__tmp.p; in dlm_process_incoming_buffer() 114 if (msglen > sizeof(__tmp) && p == &__tmp.p) { in dlm_process_incoming_buffer() 132 if (p != &__tmp.p) in dlm_process_incoming_buffer()
|
/linux-4.19.296/include/net/sctp/ |
D | auth.h | 74 #define key_for_each_safe(__key, __tmp, __list_head) \ argument 75 list_for_each_entry_safe(__key, __tmp, __list_head, key_list)
|
/linux-4.19.296/fs/btrfs/ |
D | send.c | 585 __le##bits __tmp = cpu_to_le##bits(value); \ 586 return tlv_put(sctx, attr, &__tmp, sizeof(__tmp)); \
|