Lines Matching refs:tl
99 local_trylock_t *tl; \
103 tl = (local_trylock_t *)l; \
106 lockdep_assert(tl->acquired == 0); \
107 WRITE_ONCE(tl->acquired, 1); \
133 local_trylock_t *tl; \
136 tl = this_cpu_ptr(lock); \
137 if (READ_ONCE(tl->acquired)) { \
139 tl = NULL; \
141 WRITE_ONCE(tl->acquired, 1); \
143 (local_lock_t *)tl); \
145 !!tl; \
150 local_trylock_t *tl; \
153 tl = this_cpu_ptr(lock); \
154 if (READ_ONCE(tl->acquired)) { \
156 tl = NULL; \
158 WRITE_ONCE(tl->acquired, 1); \
160 (local_lock_t *)tl); \
162 !!tl; \
167 local_trylock_t *tl; \
171 tl = (local_trylock_t *)l; \
175 lockdep_assert(tl->acquired == 1); \
176 WRITE_ONCE(tl->acquired, 0); \