Lines Matching refs:OPTIMISED_CASE
235 OPTIMISED_CASE(1, IS_LOCK_FREE_1, uint8_t) \
236 OPTIMISED_CASE(2, IS_LOCK_FREE_2, uint16_t) \
237 OPTIMISED_CASE(4, IS_LOCK_FREE_4, uint32_t) \
238 OPTIMISED_CASE(8, IS_LOCK_FREE_8, uint64_t) \
239 OPTIMISED_CASE(16, IS_LOCK_FREE_16, __uint128_t)
242 OPTIMISED_CASE(1, IS_LOCK_FREE_1, uint8_t) \
243 OPTIMISED_CASE(2, IS_LOCK_FREE_2, uint16_t) \
244 OPTIMISED_CASE(4, IS_LOCK_FREE_4, uint32_t) \
245 OPTIMISED_CASE(8, IS_LOCK_FREE_8, uint64_t)
248 #define OPTIMISED_CASE(n, lockfree, type) \ macro
259 #undef OPTIMISED_CASE
261 #define OPTIMISED_CASE(n, lockfree, type) \ macro
274 #undef OPTIMISED_CASE
276 #define OPTIMISED_CASE(n, lockfree, type) \ macro
288 #undef OPTIMISED_CASE
290 #define OPTIMISED_CASE(n, lockfree, type) \ macro
308 #undef OPTIMISED_CASE
325 #define OPTIMISED_CASE(n, lockfree, type) ATOMIC_RMW(n, lockfree, type, add, +) macro
327 #undef OPTIMISED_CASE
328 #define OPTIMISED_CASE(n, lockfree, type) ATOMIC_RMW(n, lockfree, type, sub, -) macro
330 #undef OPTIMISED_CASE
331 #define OPTIMISED_CASE(n, lockfree, type) ATOMIC_RMW(n, lockfree, type, and, &) macro
333 #undef OPTIMISED_CASE
334 #define OPTIMISED_CASE(n, lockfree, type) ATOMIC_RMW(n, lockfree, type, or, |) macro
336 #undef OPTIMISED_CASE
337 #define OPTIMISED_CASE(n, lockfree, type) ATOMIC_RMW(n, lockfree, type, xor, ^) macro
339 #undef OPTIMISED_CASE