/kernel/linux/linux-6.6/include/linux/ |
H A D | spinlock.h | 507 raw_spin_lock(_T->lock), 508 raw_spin_unlock(_T->lock)) 511 raw_spin_lock_nested(_T->lock, SINGLE_DEPTH_NESTING), 512 raw_spin_unlock(_T->lock)) 515 raw_spin_lock_irq(_T->lock), 516 raw_spin_unlock_irq(_T->lock)) 519 raw_spin_lock_irqsave(_T->lock, _T->flags), 520 raw_spin_unlock_irqrestore(_T->lock, _T [all...] |
H A D | cleanup.h | 10 * based cleanup function. @free is an expression using '_T' to access 25 * DEFINE_FREE(kfree, void *, if (_T) kfree(_T)) 38 static inline void __free_##_name(void *p) { _type _T = *(_type *)p; _free; } 51 * @exit is an expression using '_T' -- similar to FREE above. 62 * DEFINE_CLASS(fdget, struct fd, fdput(_T), fdget(fd), int fd) 74 { _type _T = *p; _exit; } \ 106 DEFINE_CLASS(_name, _type, _unlock, ({ _lock; _T; }), _type _T) 130 * As above, both _lock and _unlock are statements, except this time '_T' wil [all...] |
H A D | rwsem.h | 205 DEFINE_GUARD(rwsem_read, struct rw_semaphore *, down_read(_T), up_read(_T)) 206 DEFINE_GUARD(rwsem_write, struct rw_semaphore *, down_write(_T), up_write(_T)) 208 DEFINE_FREE(up_read, struct rw_semaphore *, if (_T) up_read(_T)) 209 DEFINE_FREE(up_write, struct rw_semaphore *, if (_T) up_write(_T))
|
H A D | mutex.h | 223 DEFINE_GUARD(mutex, struct mutex *, mutex_lock(_T), mutex_unlock(_T)) 224 DEFINE_FREE(mutex, struct mutex *, if (_T) mutex_unlock(_T))
|
H A D | srcu.h | 347 _T->idx = srcu_read_lock(_T->lock), 348 srcu_read_unlock(_T->lock, _T->idx),
|
H A D | file.h | 84 DEFINE_CLASS(fd, struct fd, fdput(_T), fdget(fd), int fd) 94 DEFINE_CLASS(get_unused_fd, int, if (_T >= 0) put_unused_fd(_T),
|
H A D | irqflags.h | 273 local_irq_save(_T->flags), 274 local_irq_restore(_T->flags),
|
H A D | device.h | 1010 DEFINE_GUARD(device, struct device *, device_lock(_T), device_unlock(_T)) 1060 DEFINE_FREE(device_del, struct device *, if (_T) device_del(_T)) 1230 DEFINE_FREE(put_device, struct device *, if (_T) put_device(_T))
|
H A D | percpu.h | 136 DEFINE_FREE(free_percpu, void __percpu *, free_percpu(_T))
|
H A D | slab.h | 231 DEFINE_FREE(kfree, void *, if (_T) kfree(_T))
|
/kernel/linux/linux-5.10/tools/perf/tests/ |
H A D | event-times.c | 223 #define _T(attach, detach) \ in test__event_times() macro 229 _T(attach__enable_on_exec, detach__enable_on_exec) in test__event_times() 231 _T(attach__current_enabled, detach__disable) in test__event_times() 233 _T(attach__current_disabled, detach__disable) in test__event_times() 235 _T(attach__cpu_disabled, detach__disable) in test__event_times() 237 _T(attach__cpu_enabled, detach__disable) in test__event_times() 239 #undef _T in test__event_times() macro
|
/kernel/linux/linux-6.6/tools/perf/tests/ |
H A D | event-times.c | 223 #define _T(attach, detach) \ in test__event_times() macro 229 _T(attach__enable_on_exec, detach__enable_on_exec) in test__event_times() 231 _T(attach__current_enabled, detach__disable) in test__event_times() 233 _T(attach__current_disabled, detach__disable) in test__event_times() 235 _T(attach__cpu_disabled, detach__disable) in test__event_times() 237 _T(attach__cpu_enabled, detach__disable) in test__event_times() 239 #undef _T in test__event_times() macro
|
/kernel/liteos_a/kernel/common/ |
H A D | los_config.h | 374 #define _T(x) x macro 378 #define _V(v) _T(KERNEL_NAME)_T(KERNEL_SEP)_T(v)
|
/kernel/linux/linux-6.6/include/linux/sched/ |
H A D | task.h | 164 DEFINE_FREE(put_task, struct task_struct *, if (_T) put_task_struct(_T))
|
/kernel/linux/linux-6.6/kernel/sched/ |
H A D | sched.h | 1853 rq_lock(_T->lock, &_T->rf), 1854 rq_unlock(_T->lock, &_T->rf), 1858 rq_lock_irq(_T->lock, &_T->rf), 1859 rq_unlock_irq(_T->lock, &_T->rf), 1863 rq_lock_irqsave(_T->lock, &_T [all...] |
H A D | core.c | 6585 sched_core_lock(*_T->lock, &_T->flags), 6586 sched_core_unlock(*_T->lock, &_T->flags),
|
/kernel/linux/linux-5.10/arch/x86/crypto/ |
H A D | sha1_ssse3_asm.S | 209 .set _T, \a 211 .set \b, _T
|
/kernel/linux/linux-6.6/arch/x86/crypto/ |
H A D | sha1_ssse3_asm.S | 210 .set _T, \a 212 .set \b, _T
|