Searched refs:__tmp (Results 1 – 20 of 20) sorted by relevance
/linux-4.4.14/include/linux/ |
D | kfifo.h | 139 typeof(&(fifo)) __tmp = &(fifo); \ 140 struct __kfifo *__kfifo = &__tmp->kfifo; \ 143 __kfifo->mask = __is_kfifo_ptr(__tmp) ? 0 : ARRAY_SIZE(__tmp->buf) - 1;\ 144 __kfifo->esize = sizeof(*__tmp->buf); \ 145 __kfifo->data = __is_kfifo_ptr(__tmp) ? NULL : __tmp->buf; \ 224 typeof((fifo) + 1) __tmp = (fifo); \ 225 __tmp->kfifo.in = __tmp->kfifo.out = 0; \ 238 typeof((fifo) + 1) __tmp = (fifo); \ 239 __tmp->kfifo.out = __tmp->kfifo.in; \ 294 typeof((fifo) + 1) __tmp = (fifo); \ [all …]
|
D | typecheck.h | 20 ({ typeof(type) __tmp = function; \ 21 (void)__tmp; \
|
D | kernel.h | 803 do { typeof(a) __tmp = (a); (a) = (b); (b) = __tmp; } while (0)
|
/linux-4.4.14/arch/arc/include/uapi/asm/ |
D | swab.h | 69 ({ unsigned long __in = (x), __tmp; \ 70 __tmp = __in << 8 | __in >> 24; /* ror tmp,in,24 */ \ 72 __tmp ^= __in; \ 73 __tmp &= 0xff00ff; \ 74 __tmp ^ __in; \
|
/linux-4.4.14/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.4.14/sound/core/seq/ |
D | seq_queue.h | 128 #define u64_div(x,y,q) do {u32 __tmp; udiv_qrnnd(q, __tmp, (x)>>32, x, y);} while (0) 129 #define u64_mod(x,y,r) do {u32 __tmp; udiv_qrnnd(__tmp, q, (x)>>32, x, y);} while (0)
|
/linux-4.4.14/arch/m32r/include/asm/ |
D | termios.h | 19 unsigned short __tmp; \ 20 get_user(__tmp,&(termio)->x); \ 21 *(unsigned short *) &(termios)->x = __tmp; \
|
/linux-4.4.14/arch/parisc/include/asm/ |
D | termios.h | 19 unsigned short __tmp; \ 20 get_user(__tmp,&(termio)->x); \ 21 *(unsigned short *) &(termios)->x = __tmp; \
|
/linux-4.4.14/arch/cris/include/asm/ |
D | termios.h | 19 unsigned short __tmp; \ 20 get_user(__tmp,&(termio)->x); \ 21 *(unsigned short *) &(termios)->x = __tmp; \
|
/linux-4.4.14/arch/ia64/include/asm/ |
D | termios.h | 25 unsigned short __tmp; \ 26 get_user(__tmp,&(termio)->x); \ 27 *(unsigned short *) &(termios)->x = __tmp; \
|
/linux-4.4.14/arch/mn10300/include/uapi/asm/ |
D | termios.h | 47 unsigned short __tmp; \ 48 get_user(__tmp, &(termio)->x); \ 49 *(unsigned short *) &(termios)->x = __tmp; \
|
/linux-4.4.14/arch/mips/include/asm/ |
D | div64.h | 24 unsigned long __cf, __tmp, __tmp2, __i; \ 57 : "=&r" (__mod32), "=&r" (__tmp), \
|
D | io.h | 330 type __tmp; \ 342 : "=r" (__tmp) \
|
/linux-4.4.14/arch/s390/include/asm/ |
D | processor.h | 311 __typeof__(dest) __tmp = (val); \ 313 BUILD_BUG_ON(sizeof(__tmp) != sizeof(val)); \ 314 memcpy_absolute(&(dest), &__tmp, sizeof(__tmp)); \
|
/linux-4.4.14/include/net/sctp/ |
D | auth.h | 71 #define key_for_each_safe(__key, __tmp, __list_head) \ argument 72 list_for_each_entry_safe(__key, __tmp, __list_head, key_list)
|
/linux-4.4.14/drivers/net/wireless/iwlegacy/ |
D | debug.c | 137 struct dentry *__tmp; \ 138 __tmp = debugfs_create_bool(#name, S_IWUSR | S_IRUSR, \ 140 if (IS_ERR(__tmp) || !__tmp) \ 145 struct dentry *__tmp; \ 146 __tmp = debugfs_create_x32(#name, S_IWUSR | S_IRUSR, \ 148 if (IS_ERR(__tmp) || !__tmp) \
|
/linux-4.4.14/drivers/staging/lustre/lustre/osc/ |
D | osc_cache.c | 1345 struct client_obd *__tmp = (cli); \ 1348 __tmp->cl_import->imp_obd->obd_name, \ 1349 __tmp->cl_dirty, __tmp->cl_dirty_max, \ 1351 __tmp->cl_lost_grant, __tmp->cl_avail_grant, \ 1352 __tmp->cl_reserved_grant, __tmp->cl_w_in_flight, ##args); \ 2048 struct list_head *__tmp = (list)->next; \ 2049 list_del_init(__tmp); \ 2050 list_entry(__tmp, struct osc_object, oo_##item); \
|
/linux-4.4.14/drivers/net/wireless/iwlwifi/dvm/ |
D | debugfs.c | 48 struct dentry *__tmp; \ 49 __tmp = debugfs_create_bool(#name, S_IWUSR | S_IRUSR, \ 51 if (IS_ERR(__tmp) || !__tmp) \ 56 struct dentry *__tmp; \ 57 __tmp = debugfs_create_x32(#name, S_IWUSR | S_IRUSR, \ 59 if (IS_ERR(__tmp) || !__tmp) \ 64 struct dentry *__tmp; \ 65 __tmp = debugfs_create_u32(#name, mode, \ 67 if (IS_ERR(__tmp) || !__tmp) \
|
/linux-4.4.14/drivers/net/wireless/ath/carl9170/ |
D | debug.c | 462 u32 __tmp[ARRAY_SIZE(name##_regs)]; \ 466 __tmp[__i] = name##_regs[__i].reg; \ 472 __tmp, ar->debug.stats.name##_counter); \
|
/linux-4.4.14/fs/btrfs/ |
D | send.c | 564 __le##bits __tmp = cpu_to_le##bits(value); \ 565 return tlv_put(sctx, attr, &__tmp, sizeof(__tmp)); \
|