Home
last modified time | relevance | path

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

/linux-4.19.296/include/linux/
Dkfifo.h140 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 …]
Dtypecheck.h21 ({ typeof(type) __tmp = function; \
22 (void)__tmp; \
Drcupdate.h426 typeof(ptr) __tmp = rcu_dereference_protected((rcu_ptr), (c)); \
428 __tmp; \
442 typeof(ptr) __tmp = rcu_dereference_protected((rcu_ptr), (c)); \
444 (ptr) = __tmp; \
Dfutex.h41 u64 __tmp; member
Dkernel.h981 do { typeof(a) __tmp = (a); (a) = (b); (b) = __tmp; } while (0)
/linux-4.19.296/fs/dlm/
Dmidcomms.c65 } __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/
Dauth.h74 #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/
Dsend.c585 __le##bits __tmp = cpu_to_le##bits(value); \
586 return tlv_put(sctx, attr, &__tmp, sizeof(__tmp)); \