Searched refs:_t (Results 1 - 25 of 46) sorted by relevance

12

/linux-master/include/linux/
H A Dcleanup.h105 typedef _type class_##_name##_t; \
112 typedef class_##_name##_t class_##_name##ext##_t; \
113 static inline void class_##_name##ext##_destructor(class_##_name##_t *p)\
115 static inline class_##_name##_t class_##_name##ext##_constructor(_init_args) \
116 { class_##_name##_t t = _init; return t; }
119 class_##_name##_t var __cleanup(class_##_name##_destructor) = \
153 static inline void * class_##_name##_lock_ptr(class_##_name##_t *_T) \
158 ({ void *_t = _T; if (_T && !(_condlock)) _t
[all...]
H A Dseqlock_types.h66 } seqcount_##lockname##_t;
H A Dseqlock.h125 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
H A Dbtree-type.h8 #define VISITOR_FN_T _BTREE_TP(visitor, BTREE_TYPE_SUFFIX, _t)
/linux-master/arch/mips/include/asm/
H A Dmips-cps.h24 static inline uint##sz##_t read_##unit##_##name(void) \
47 static inline void write_##unit##_##name(uint##sz##_t val) \
72 static inline void change_##unit##_##name(uint##sz##_t mask, \
73 uint##sz##_t val) \
75 uint##sz##_t reg_val = read_##unit##_##name(); \
81 static inline void set_##unit##_##name(uint##sz##_t val) \
86 static inline void clear_##unit##_##name(uint##sz##_t val) \
H A Datomic.h27 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-master/arch/parisc/lib/
H A Dchecksum.c21 #define addc(_t,_r) \
25 : "=r"(_t) \
26 : "r"(_r), "0"(_t));
/linux-master/include/math-emu/
H A Dop-common.h848 _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 >>
[all...]
H A Dop-4.h343 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); \
[all...]
/linux-master/drivers/regulator/
H A Dtps65023-regulator.c81 #define TPS65023_REGULATOR_DCDC(_num, _t, _em) \
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) \
106 .n_voltages = ARRAY_SIZE(_t), \
110 .volt_table = _t, \
H A Dtps65217-regulator.c23 _t, _lr, _nlr, _sr, _sm) \
37 .volt_table = _t, \
/linux-master/crypto/asymmetric_keys/
H A Dx509_parser.h48 extern int x509_decode_time(time64_t *_t, size_t hdrlen,
/linux-master/fs/bcachefs/
H A Dbset.h208 #define for_each_bset(_b, _t) \
209 for (_t = (_b)->set; _t < (_b)->set + (_b)->nsets; _t++)
211 #define bset_tree_for_each_key(_b, _t, _k) \
212 for (_k = btree_bkey_first(_b, _t); \
213 _k != btree_bkey_last(_b, _t); \
H A Dfifo.h47 typeof(*((dest)->data)) _t; \
49 fifo_pop(src, _t)) \
50 fifo_push(dest, _t); \
H A Dbtree_types.h617 #define btree_bkey_first(_b, _t) \
619 EBUG_ON(bset(_b, _t)->start != \
620 __btree_node_offset_to_key(_b, btree_bkey_first_offset(_t)));\
622 bset(_b, _t)->start; \
625 #define btree_bkey_last(_b, _t) \
627 EBUG_ON(__btree_node_offset_to_key(_b, (_t)->end_offset) != \
628 vstruct_last(bset(_b, _t))); \
630 __btree_node_offset_to_key(_b, (_t)->end_offset); \
/linux-master/drivers/scsi/fnic/
H A Dfnic_trace.h73 #define FNIC_TRACE(_fn, _hn, _t, _a, _b, _c, _d, _e) \
85 trace_buf->tag = _t; \
/linux-master/kernel/locking/
H A Dspinlock.c68 void __lockfunc __raw_##op##_lock(locktype##_t *lock) \
80 unsigned long __lockfunc __raw_##op##_lock_irqsave(locktype##_t *lock) \
98 void __lockfunc __raw_##op##_lock_irq(locktype##_t *lock) \
103 void __lockfunc __raw_##op##_lock_bh(locktype##_t *lock) \
/linux-master/arch/riscv/include/asm/
H A Datomic.h55 void arch_atomic##prefix##_##op(c_type i, atomic##prefix##_t *v) \
90 atomic##prefix##_t *v) \
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-master/drivers/net/wireless/mediatek/mt76/
H A Dmt76_connac_mcu.h1151 #define MCU_CMD(_t) FIELD_PREP(__MCU_CMD_FIELD_ID, \
1152 MCU_CMD_##_t)
1153 #define MCU_EXT_CMD(_t) (MCU_CMD(EXT_CID) | \
1155 MCU_EXT_CMD_##_t))
1156 #define MCU_EXT_QUERY(_t) (MCU_EXT_CMD(_t) | __MCU_CMD_FIELD_QUERY)
1157 #define MCU_UNI_CMD(_t) (__MCU_CMD_FIELD_UNI | \
1159 MCU_UNI_CMD_##_t))
1160 #define MCU_CE_CMD(_t) (__MCU_CMD_FIELD_CE | \
1162 MCU_CE_CMD_##_t))
[all...]
/linux-master/arch/mips/include/asm/octeon/
H A Dcvmx.h213 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-master/tools/testing/selftests/
H A Dkselftest_harness.h716 #define __EXPECT(_expected, _expected_str, _seen, _seen_str, _t, _assert) do { \
720 if (!(__exp _t __seen)) { \
727 _expected_str, __exp_print, #_t, \
735 _expected_str, __exp_print, #_t, \
743 _expected_str, __exp_print, #_t, \
751 _expected_str, __exp_print, #_t, \
762 #define __EXPECT_STR(_expected, _seen, _t, _assert) do { \
765 if (!(strcmp(__exp, __seen) _t 0)) { \
766 __TH_LOG("Expected '%s' %s '%s'.", __exp, #_t, __seen); \
/linux-master/arch/mips/vdso/
H A Dgenvdso.c78 static uint##bits##_t swap_uint##bits(uint##bits##_t val) \
/linux-master/drivers/scsi/libsas/
H A Dsas_internal.h28 #define ASSIGN_SAS_TASK(_sc, _t) do { (_sc)->host_scribble = (void *) _t; } while (0)
/linux-master/net/rxrpc/
H A Dcall_event.c453 #define set(T) { ktime_t _t = (T); if (ktime_before(_t, next)) next = _t; }
/linux-master/drivers/rtc/
H A Drtc-mt7622.c52 #define MTK_RTC_TREG(_t, _f) (0x40 + (0x4 * (_f)) + ((_t) * 0x20))

Completed in 248 milliseconds

12