Lines Matching refs:ui
10 unsigned int ui;
21 (void) __sync_fetch_and_add (&ui, 1); // CHECK: atomicrmw add i32
30 (void) __sync_fetch_and_sub (&ui, 1); // CHECK: atomicrmw sub i32
39 (void) __sync_fetch_and_or (&ui, 1); // CHECK: atomicrmw or i32
48 (void) __sync_fetch_and_xor (&ui, 1); // CHECK: atomicrmw xor i32
57 (void) __sync_fetch_and_and (&ui, 1); // CHECK: atomicrmw and i32
70 ui = __sync_fetch_and_add (&ui, 11); // CHECK: atomicrmw add
79 ui = __sync_fetch_and_sub (&ui, 11); // CHECK: atomicrmw sub
88 ui = __sync_fetch_and_or (&ui, 11); // CHECK: atomicrmw or
97 ui = __sync_fetch_and_xor (&ui, 11); // CHECK: atomicrmw xor
106 ui = __sync_fetch_and_and (&ui, 11); // CHECK: atomicrmw and
119 ui = __sync_add_and_fetch (&ui, uc); // CHECK: atomicrmw add
128 ui = __sync_sub_and_fetch (&ui, uc); // CHECK: atomicrmw sub
137 ui = __sync_or_and_fetch (&ui, uc); // CHECK: atomicrmw or
146 ui = __sync_xor_and_fetch (&ui, uc); // CHECK: atomicrmw xor
155 ui = __sync_and_and_fetch (&ui, uc); // CHECK: atomicrmw and
168 ui = __sync_val_compare_and_swap (&ui, uc, sc); // CHECK: cmpxchg i32
172 ui = __sync_bool_compare_and_swap (&sc, uc, sc); // CHECK: cmpxchg
173 ui = __sync_bool_compare_and_swap (&uc, uc, sc); // CHECK: cmpxchg
174 ui = __sync_bool_compare_and_swap (&ss, uc, sc); // CHECK: cmpxchg
175 ui = __sync_bool_compare_and_swap (&us, uc, sc); // CHECK: cmpxchg
176 ui = __sync_bool_compare_and_swap (&si, uc, sc); // CHECK: cmpxchg
177 ui = __sync_bool_compare_and_swap (&ui, uc, sc); // CHECK: cmpxchg
178 ui = __sync_bool_compare_and_swap (&sll, uc, sc); // CHECK: cmpxchg
179 ui = __sync_bool_compare_and_swap (&ull, uc, sc); // CHECK: cmpxchg
189 ui = __sync_lock_test_and_set (&ui, 1); // CHECK: atomicrmw xchg i32
200 __sync_lock_release (&ui); // CHECK: store atomic {{.*}} release, align 4