| /linux/include/linux/ |
| H A D | cleanup.h | 280 typedef _type class_##_name##_t; \ 287 typedef class_##_name##_t class_##_name##ext##_t; \ 288 static __always_inline void class_##_name##ext##_destructor(class_##_name##_t *p) \ 290 static __always_inline class_##_name##_t class_##_name##ext##_constructor(_init_args) \ 291 { class_##_name##_t t = _init; return t; } 294 class_##_name##_t var __cleanup(class_##_name##_destructor) = \ 298 class_##_name##_t _var __cleanup(class_##_name##_destructor) = (_init_expr) 353 static inline void * class_##_name##_lock_ptr(class_##_name##_t *_T) \ 363 static __always_inline void *class_##_name##_lock_ptr(class_##_name##_t *_T) \ 371 static __always_inline int class_##_name##_lock_err(class_##_name##_t *_T) \ [all …]
|
| H A D | closure.h | 460 long _t; \ 467 _t = max_t(long, 1L, _until - jiffies); \ 470 _t = max_t(long, 0L, _until - jiffies); \ 471 if (!_t) \ 473 closure_sync_timeout(&cl, _t); \ 477 _t; \
|
| H A D | seqlock.h | 125 seqcount_##lockname##_t *____s = (s); \ 146 __seqprop_##lockname##_ptr(seqcount_##lockname##_t *s) \ 152 __seqprop_##lockname##_const_ptr(const seqcount_##lockname##_t *s) \ 158 __seqprop_##lockname##_sequence(const seqcount_##lockname##_t *s) \ 180 __seqprop_##lockname##_preemptible(const seqcount_##lockname##_t *s) \ 190 __seqprop_##lockname##_assert(const seqcount_##lockname##_t *s) \ 250 seqcount_##lockname##_t: __seqprop_##lockname##_##prop
|
| /linux/include/math-emu/ |
| H A D | op-common.h | 848 _FP_W_TYPE _t = (x); \ 850 if (_t > 0xffff) r -= 16; \ 851 if (_t > 0xffff) _t >>= 16; \ 852 if (_t > 0xff) r -= 8; \ 853 if (_t > 0xff) _t >>= 8; \ 854 if (_t & 0xf0) r -= 4; \ 855 if (_t & 0xf0) _t >>= 4; \ 856 if (_t & 0xc) r -= 2; \ 857 if (_t & 0xc) _t >>= 2; \ 858 if (_t & 0x2) r -= 1; \ [all …]
|
| H A D | op-4.h | 343 UWtype _t; \ 345 umul_ppmm(p2,_t,m,n1); \ 346 __FP_FRAC_ADDI_2(p2,p1,_t); \ 347 umul_ppmm(p3,_t,m,n2); \ 348 __FP_FRAC_ADDI_2(p3,p2,_t); \ 600 UWtype _t; \ 601 _t = ((x0 += i) < i); \ 602 x1 += _t; _t = (x1 < _t); \ 603 x2 += _t; _t = (x2 < _t); \ 604 x3 += _t; \
|
| /linux/drivers/regulator/ |
| H A D | tps65023-regulator.c | 81 #define TPS65023_REGULATOR_DCDC(_num, _t, _em) \ argument 87 .n_voltages = ARRAY_SIZE(_t), \ 91 .volt_table = _t, \ 93 .vsel_mask = ARRAY_SIZE(_t) - 1, \ 100 #define TPS65023_REGULATOR_LDO(_num, _t, _vm) \ argument 106 .n_voltages = ARRAY_SIZE(_t), \ 110 .volt_table = _t, \
|
| /linux/arch/mips/include/asm/ |
| H A D | atomic.h | 27 static __always_inline type arch_##pfx##_read(const pfx##_t *v) \ 32 static __always_inline void arch_##pfx##_set(pfx##_t *v, type i) \ 45 static __inline__ void arch_##pfx##_##op(type i, pfx##_t * v) \ 73 arch_##pfx##_##op##_return_relaxed(type i, pfx##_t * v) \ 107 arch_##pfx##_fetch_##op##_relaxed(type i, pfx##_t * v) \ 197 static __inline__ type arch_##pfx##_sub_if_positive(type i, pfx##_t * v) \
|
| /linux/arch/riscv/include/asm/ |
| H A D | atomic.h | 55 void arch_atomic##prefix##_##op(c_type i, atomic##prefix##_t *v) \ 90 atomic##prefix##_t *v) \ in ATOMIC_OPS() 101 c_type arch_atomic##prefix##_fetch_##op(c_type i, atomic##prefix##_t *v) \ 115 atomic##prefix##_t *v) \ 120 c_type arch_atomic##prefix##_##op##_return(c_type i, atomic##prefix##_t *v) \
|
| /linux/arch/mips/include/asm/octeon/ |
| H A D | cvmx.h | 213 static inline void cvmx_write64_##TYPE(uint64_t addr, TYPE##_t val) \ 215 *CASTPTR(volatile TYPE##_t, addr) = val; \ 227 static inline TYPE##_t cvmx_read64_##TYPE(uint64_t addr) \ 229 return *CASTPTR(volatile TYPE##_t, addr); \
|
| /linux/tools/testing/selftests/ |
| H A D | kselftest_harness.h | 762 #define __EXPECT(_expected, _expected_str, _seen, _seen_str, _t, _assert) do { \ argument 766 if (!(__exp _t __seen)) { \ 773 _expected_str, __exp_print, #_t, \ 781 _expected_str, __exp_print, #_t, \ 789 _expected_str, __exp_print, #_t, \ 797 _expected_str, __exp_print, #_t, \ 808 #define __EXPECT_STR(_expected, _seen, _t, _assert) do { \ argument 811 if (!(strcmp(__exp, __seen) _t 0)) { \ 812 __TH_LOG("Expected '%s' %s '%s'.", __exp, #_t, __seen); \
|
| /linux/drivers/scsi/fnic/ |
| H A D | fnic_trace.h | 73 #define FNIC_TRACE(_fn, _hn, _t, _a, _b, _c, _d, _e) \ argument 85 trace_buf->tag = _t; \
|
| /linux/tools/testing/selftests/filesystems/ |
| H A D | fclog.c | 18 #define ASSERT_ERRNO(expected, _t, seen) \ argument 21 _tmp_seen >= 0 ? _tmp_seen : -errno; }), #seen, _t, 1)
|
| /linux/kernel/irq/ |
| H A D | internals.h | 180 class_irqdesc_lock_t _t = { .bus = bus, }; in class_irqdesc_lock_constructor() local 182 _t.lock = __irq_get_desc_lock(irq, &_t.flags, bus, check); in class_irqdesc_lock_constructor() 184 return _t; in class_irqdesc_lock_constructor()
|
| /linux/scripts/atomic/fallbacks/ |
| H A D | set_release | 2 if (__native_word(${atomic}_t)) {
|
| H A D | read_acquire | 4 if (__native_word(${atomic}_t)) {
|
| /linux/scripts/atomic/kerneldoc/ |
| H A D | dec | 4 * @v: pointer to ${atomic}_t
|
| H A D | inc | 4 * @v: pointer to ${atomic}_t
|
| H A D | and | 5 * @v: pointer to ${atomic}_t
|
| H A D | xor | 5 * @v: pointer to ${atomic}_t
|
| H A D | or | 5 * @v: pointer to ${atomic}_t
|
| H A D | sub | 5 * @v: pointer to ${atomic}_t
|
| H A D | andnot | 5 * @v: pointer to ${atomic}_t
|
| H A D | add | 5 * @v: pointer to ${atomic}_t
|
| H A D | set | 4 * @v: pointer to ${atomic}_t
|
| /linux/rust/pin-init/src/ |
| H A D | __internal.rs | 272 _t: PhantomData<T>, field 278 Self { _t: PhantomData } in new()
|