Home
last modified time | relevance | path

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

/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)
/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)