Lines Matching refs:onestwos
34 int onestwos = 0x11112222; in test_atomic() local
40 TEST(, add, +=, onestwos); in test_atomic()
42 TEST(, sub, -=, onestwos); in test_atomic()
56 long long onestwos = 0x1111111122222222LL; in test_atomic64() local
68 TEST(64, add, +=, onestwos); in test_atomic64()
70 TEST(64, sub, -=, onestwos); in test_atomic64()
78 r += onestwos; in test_atomic64()
79 BUG_ON(atomic64_add_return(onestwos, &v) != r); in test_atomic64()
88 r -= onestwos; in test_atomic64()
89 BUG_ON(atomic64_sub_return(onestwos, &v) != r); in test_atomic64()
141 INIT(onestwos); in test_atomic64()
142 BUG_ON(atomic64_dec_if_positive(&v) != (onestwos - 1)); in test_atomic64()
157 INIT(onestwos); in test_atomic64()