Lines Matching refs:ui
10 unsigned int ui; variable
21 (void) __sync_fetch_and_add (&ui, 1); // CHECK: atomicrmw add i32 in test_op_ignore()
30 (void) __sync_fetch_and_sub (&ui, 1); // CHECK: atomicrmw sub i32 in test_op_ignore()
39 (void) __sync_fetch_and_or (&ui, 1); // CHECK: atomicrmw or i32 in test_op_ignore()
48 (void) __sync_fetch_and_xor (&ui, 1); // CHECK: atomicrmw xor i32 in test_op_ignore()
57 (void) __sync_fetch_and_nand (&ui, 1); // CHECK: atomicrmw nand i32 in test_op_ignore()
66 (void) __sync_fetch_and_and (&ui, 1); // CHECK: atomicrmw and i32 in test_op_ignore()
79 ui = __sync_fetch_and_add (&ui, 11); // CHECK: atomicrmw add in test_fetch_and_op()
88 ui = __sync_fetch_and_sub (&ui, 11); // CHECK: atomicrmw sub in test_fetch_and_op()
97 ui = __sync_fetch_and_or (&ui, 11); // CHECK: atomicrmw or in test_fetch_and_op()
106 ui = __sync_fetch_and_xor (&ui, 11); // CHECK: atomicrmw xor in test_fetch_and_op()
115 ui = __sync_fetch_and_nand (&ui, 11); // CHECK: atomicrmw nand in test_fetch_and_op()
124 ui = __sync_fetch_and_and (&ui, 11); // CHECK: atomicrmw and in test_fetch_and_op()
137 ui = __sync_add_and_fetch (&ui, uc); // CHECK: atomicrmw add in test_op_and_fetch()
146 ui = __sync_sub_and_fetch (&ui, uc); // CHECK: atomicrmw sub in test_op_and_fetch()
155 ui = __sync_or_and_fetch (&ui, uc); // CHECK: atomicrmw or in test_op_and_fetch()
164 ui = __sync_xor_and_fetch (&ui, uc); // CHECK: atomicrmw xor in test_op_and_fetch()
183 ui = __sync_nand_and_fetch (&ui, uc); // CHECK: atomicrmw nand in test_op_and_fetch()
198 ui = __sync_and_and_fetch (&ui, uc); // CHECK: atomicrmw and in test_op_and_fetch()
226 ui = __sync_val_compare_and_swap (&ui, uc, sc); in test_compare_and_swap()
239 ui = __sync_bool_compare_and_swap (&sc, uc, sc); in test_compare_and_swap()
243 ui = __sync_bool_compare_and_swap (&uc, uc, sc); in test_compare_and_swap()
247 ui = __sync_bool_compare_and_swap (&ss, uc, sc); in test_compare_and_swap()
251 ui = __sync_bool_compare_and_swap (&us, uc, sc); in test_compare_and_swap()
255 ui = __sync_bool_compare_and_swap (&si, uc, sc); in test_compare_and_swap()
259 ui = __sync_bool_compare_and_swap (&ui, uc, sc); in test_compare_and_swap()
263 ui = __sync_bool_compare_and_swap (&sll, uc, sc); in test_compare_and_swap()
267 ui = __sync_bool_compare_and_swap (&ull, uc, sc); in test_compare_and_swap()
279 ui = __sync_lock_test_and_set (&ui, 1); // CHECK: atomicrmw xchg i32 in test_lock()
290 __sync_lock_release (&ui); // CHECK: store atomic {{.*}} release, align 4 in test_lock()