| /linux/include/linux/ |
| H A D | kfifo.h | 131 typeof(&(fifo)) __tmp = &(fifo); \ 132 struct __kfifo *__kfifo = &__tmp->kfifo; \ 135 __kfifo->mask = __is_kfifo_ptr(__tmp) ? 0 : ARRAY_SIZE(__tmp->buf) - 1;\ 136 __kfifo->esize = sizeof(*__tmp->buf); \ 137 __kfifo->data = __is_kfifo_ptr(__tmp) ? NULL : __tmp->buf; \ 216 typeof((fifo) + 1) __tmp = (fifo); \ 217 __tmp->kfifo.in = __tmp->kfifo.out = 0; \ 230 typeof((fifo) + 1) __tmp = (fifo); \ 231 __tmp->kfifo.out = __tmp->kfifo.in; \ 317 typeof((fifo) + 1) __tmp = (fifo); \ [all …]
|
| H A D | instrumented.h | 212 u64 __tmp = (u64)(to); \ 213 kmsan_unpoison_memory(&__tmp, sizeof(__tmp)); \ 214 to = __tmp; \
|
| H A D | typecheck.h | 21 ({ typeof(type) __tmp = function; \ 22 (void)__tmp; \
|
| H A D | minmax.h | 308 do { typeof(a) __tmp = (a); (a) = (b); (b) = __tmp; } while (0)
|
| H A D | regmap.h | 135 int __ret, __tmp; \ 136 __tmp = read_poll_timeout(regmap_read, __ret, __ret || (cond), \ 138 __ret ?: __tmp; \ 206 int __ret, __tmp; \ 207 __tmp = read_poll_timeout(regmap_field_read, __ret, __ret || (cond), \ 209 __ret ?: __tmp; \
|
| H A D | futex.h | 42 u64 __tmp; member
|
| H A D | rcupdate.h | 594 typeof(ptr) __tmp = rcu_dereference_protected((rcu_ptr), (c)); \ 596 __tmp; \
|
| /linux/arch/riscv/include/asm/ |
| H A D | runtime-const.h | 90 typeof(sym) __ret, __tmp; \ 100 : [__ret] "=r" (__ret), [__tmp] "=r" (__tmp)); \ 106 typeof(sym) __ret, __tmp; \ 114 : [__ret] "=r" (__ret), [__tmp] "=r" (__tmp)); \ 120 typeof(sym) __ret, __tmp; \ 128 : [__ret] "=r" (__ret), [__tmp] "=r" (__tmp)); \ 134 typeof(sym) __ret, __tmp; \ 138 : [__ret] "=r" (__ret), [__tmp] "=r" (__tmp)); \
|
| H A D | uaccess.h | 108 u64 __tmp; \ 113 : "=&r" (__tmp) \ 115 (x) = (__typeof__(x))(unsigned long)__tmp; \
|
| /linux/arch/csky/include/asm/ |
| H A D | cmpxchg.h | 61 __typeof__(new) __tmp; \ 77 : "=&r" (__ret), "=&r" (__tmp) \ 94 __typeof__(new) __tmp; \ 111 : "=&r" (__ret), "=&r" (__tmp) \ 128 __typeof__(new) __tmp; \ 146 : "=&r" (__ret), "=&r" (__tmp) \
|
| /linux/tools/testing/selftests/bpf/progs/ |
| H A D | test_tcp_custom_syncookie.h | 12 typeof(a) __tmp = (a); \ 14 (b) = __tmp; \ 19 typeof(a) __tmp[sizeof(a)]; \ 20 __builtin_memcpy(__tmp, a, sizeof(a)); \ 22 __builtin_memcpy(b, __tmp, sizeof(a)); \
|
| H A D | xdp_synproxy_kern.c | 61 do { typeof(a) __tmp = (a); (a) = (b); (b) = __tmp; } while (0)
|
| /linux/arch/loongarch/include/asm/ |
| H A D | barrier.h | 110 unsigned long __tmp; \ 123 : [mem] "+ZB" (*(u32 *)&p), [tmp] "=&r" (__tmp) \ 130 : [mem] "+ZB" (*(u64 *)&p), [tmp] "=&r" (__tmp) \
|
| H A D | cmpxchg.h | 28 __typeof(val) __ret, __tmp; \ 35 : "=&r" (__ret), "=&r" (__tmp), "=ZC" (*m) \
|
| /linux/arch/mips/include/asm/ |
| H A D | div64.h | 21 unsigned long __cf, __tmp, __tmp2, __i; \ 50 : "=&r" (__mod32), "=&r" (__tmp), \
|
| H A D | io.h | 201 type __tmp; \ 214 : "=r" (__tmp) \
|
| H A D | mipsregs.h | 1727 unsigned long long __tmp = (val); \ 1738 : "+r" (__tmp)); \ 1749 : "+r" (__tmp)); \ 1760 : "+r" (__tmp)); \
|
| /linux/include/net/sctp/ |
| H A D | auth.h | 54 #define key_for_each_safe(__key, __tmp, __list_head) \ argument 55 list_for_each_entry_safe(__key, __tmp, __list_head, key_list)
|
| /linux/arch/arm64/kvm/ |
| H A D | pkvm.c | 307 for (struct pkvm_mapping *__tmp = pkvm_mapping_iter_first(&(__pgt)->pkvm_mappings, \ 309 __tmp && ({ \ 310 __map = __tmp; \ 311 __tmp = pkvm_mapping_iter_next(__map, __start, __end - 1); \
|
| /linux/tools/testing/selftests/mm/ |
| H A D | uffd-stress.c | 60 do { __auto_type __tmp = (a); (a) = (b); (b) = __tmp; } while (0)
|
| /linux/drivers/net/wireless/ath/carl9170/ |
| H A D | debug.c | 460 u32 __tmp[ARRAY_SIZE(name##_regs)]; \ 464 __tmp[__i] = name##_regs[__i].reg; \ 470 __tmp, ar->debug.stats.name##_counter); \
|
| /linux/net/ipv6/ |
| H A D | seg6_local.c | 105 typeof(blen) __tmp = blen; \ 106 (!__tmp || __tmp > 120 || (__tmp & 0x07)); \
|
| /linux/tools/testing/vma/include/ |
| H A D | dup.h | 389 do { typeof(a) __tmp = (a); (a) = (b); (b) = __tmp; } while (0)
|
| /linux/net/mptcp/ |
| H A D | protocol.h | 371 #define mptcp_for_each_subflow_safe(__msk, __subflow, __tmp) \ argument 372 list_for_each_entry_safe(__subflow, __tmp, &((__msk)->conn_list), node)
|
| /linux/tools/perf/ |
| H A D | builtin-c2c.c | 2972 #define for_each_token(__tok, __buf, __sep, __tmp) \ argument 2973 for (__tok = strtok_r(__buf, __sep, &__tmp); __tok; \ 2974 __tok = strtok_r(NULL, __sep, &__tmp))
|