Searched refs:__tmp (Results 1 - 23 of 23) sorted by relevance

/linux-master/arch/arc/include/uapi/asm/
H A Dswab.h70 ({ 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-master/include/linux/
H A 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
[all...]
H A Dtypecheck.h21 ({ typeof(type) __tmp = function; \
22 (void)__tmp; \
H A Dinstrumented.h160 u64 __tmp = (u64)(to); \
161 kmsan_unpoison_memory(&__tmp, sizeof(__tmp)); \
162 to = __tmp; \
H A Dfutex.h41 u64 __tmp; member in union:futex_key::__anon12::__anon13
H A Dminmax.h271 do { typeof(a) __tmp = (a); (a) = (b); (b) = __tmp; } while (0)
H A Dregmap.h123 int __ret, __tmp; \
124 __tmp = read_poll_timeout(regmap_read, __ret, __ret || (cond), \
126 __ret ?: __tmp; \
194 int __ret, __tmp; \
195 __tmp = read_poll_timeout(regmap_field_read, __ret, __ret || (cond), \
197 __ret ?: __tmp; \
H A Drcupdate.h550 typeof(ptr) __tmp = rcu_dereference_protected((rcu_ptr), (c)); \
552 __tmp; \
/linux-master/arch/csky/include/asm/
H A Dcmpxchg.h60 __typeof__(new) __tmp; \
73 : "=&r" (__ret), "=&r" (__tmp) \
90 __typeof__(new) __tmp; \
104 : "=&r" (__ret), "=&r" (__tmp) \
121 __typeof__(new) __tmp; \
136 : "=&r" (__ret), "=&r" (__tmp) \
/linux-master/arch/mips/include/asm/
H A Ddiv64.h21 unsigned long __cf, __tmp, __tmp2, __i; \
50 : "=&r" (__mod32), "=&r" (__tmp), \
H A Dio.h217 type __tmp; \
230 : "=r" (__tmp) \
H A Dmipsregs.h1727 unsigned long long __tmp = (val); \
1738 : "+r" (__tmp)); \
1749 : "+r" (__tmp)); \
1760 : "+r" (__tmp)); \
/linux-master/arch/loongarch/include/asm/
H A Dbarrier.h110 unsigned long __tmp; \
123 : [mem] "+ZB" (*(u32 *)&p), [tmp] "=&r" (__tmp) \
130 : [mem] "+ZB" (*(u64 *)&p), [tmp] "=&r" (__tmp) \
/linux-master/tools/testing/selftests/bpf/progs/
H A Dtest_tcp_custom_syncookie.h14 typeof(a) __tmp = (a); \
16 (b) = __tmp; \
21 typeof(a) __tmp[sizeof(a)]; \
22 __builtin_memcpy(__tmp, a, sizeof(a)); \
24 __builtin_memcpy(b, __tmp, sizeof(a)); \
H A Dxdp_synproxy_kern.c61 do { typeof(a) __tmp = (a); (a) = (b); (b) = __tmp; } while (0)
/linux-master/include/net/sctp/
H A Dauth.h59 #define key_for_each_safe(__key, __tmp, __list_head) \
60 list_for_each_entry_safe(__key, __tmp, __list_head, key_list)
/linux-master/tools/testing/selftests/mm/
H A Duffd-stress.c53 do { typeof(a) __tmp = (a); (a) = (b); (b) = __tmp; } while (0)
/linux-master/drivers/net/wireless/ath/carl9170/
H A Ddebug.c464 u32 __tmp[ARRAY_SIZE(name##_regs)]; \
468 __tmp[__i] = name##_regs[__i].reg; \
474 __tmp, ar->debug.stats.name##_counter); \
/linux-master/net/ipv6/
H A Dseg6_local.c105 typeof(blen) __tmp = blen; \
106 (!__tmp || __tmp > 120 || (__tmp & 0x07)); \
/linux-master/net/mptcp/
H A Dprotocol.h343 #define mptcp_for_each_subflow_safe(__msk, __subflow, __tmp) \
344 list_for_each_entry_safe(__subflow, __tmp, &((__msk)->conn_list), node)
/linux-master/net/tipc/
H A Dcrypto.c320 struct tipc_aead *__tmp = rcu_dereference_protected((rcu_ptr), \
323 tipc_aead_put(__tmp); \
/linux-master/tools/perf/
H A Dbuiltin-c2c.c2903 #define for_each_token(__tok, __buf, __sep, __tmp) \
2904 for (__tok = strtok_r(__buf, __sep, &__tmp); __tok; \
2905 __tok = strtok_r(NULL, __sep, &__tmp))
/linux-master/fs/btrfs/
H A Dsend.c683 __le##bits __tmp = cpu_to_le##bits(value); \
684 return tlv_put(sctx, attr, &__tmp, sizeof(__tmp)); \

Completed in 408 milliseconds