Lines Matching full:xor
43 (void) __sync_fetch_and_xor (&sc, 1); // CHECK: atomicrmw xor i8
44 (void) __sync_fetch_and_xor (&uc, 1); // CHECK: atomicrmw xor i8
45 (void) __sync_fetch_and_xor (&ss, 1); // CHECK: atomicrmw xor i16
46 (void) __sync_fetch_and_xor (&us, 1); // CHECK: atomicrmw xor i16
47 (void) __sync_fetch_and_xor (&si, 1); // CHECK: atomicrmw xor i32
48 (void) __sync_fetch_and_xor (&ui, 1); // CHECK: atomicrmw xor i32
49 (void) __sync_fetch_and_xor (&sll, 1); // CHECK: atomicrmw xor i64
50 (void) __sync_fetch_and_xor (&ull, 1); // CHECK: atomicrmw xor i64
101 sc = __sync_fetch_and_xor (&sc, 11); // CHECK: atomicrmw xor
102 uc = __sync_fetch_and_xor (&uc, 11); // CHECK: atomicrmw xor
103 ss = __sync_fetch_and_xor (&ss, 11); // CHECK: atomicrmw xor
104 us = __sync_fetch_and_xor (&us, 11); // CHECK: atomicrmw xor
105 si = __sync_fetch_and_xor (&si, 11); // CHECK: atomicrmw xor
106 ui = __sync_fetch_and_xor (&ui, 11); // CHECK: atomicrmw xor
107 sll = __sync_fetch_and_xor (&sll, 11); // CHECK: atomicrmw xor
108 ull = __sync_fetch_and_xor (&ull, 11); // CHECK: atomicrmw xor
159 sc = __sync_xor_and_fetch (&sc, uc); // CHECK: atomicrmw xor
160 uc = __sync_xor_and_fetch (&uc, uc); // CHECK: atomicrmw xor
161 ss = __sync_xor_and_fetch (&ss, uc); // CHECK: atomicrmw xor
162 us = __sync_xor_and_fetch (&us, uc); // CHECK: atomicrmw xor
163 si = __sync_xor_and_fetch (&si, uc); // CHECK: atomicrmw xor
164 ui = __sync_xor_and_fetch (&ui, uc); // CHECK: atomicrmw xor
165 sll = __sync_xor_and_fetch (&sll, uc); // CHECK: atomicrmw xor
166 ull = __sync_xor_and_fetch (&ull, uc); // CHECK: atomicrmw xor
170 // CHECK: xor
173 // CHECK: xor
176 // CHECK: xor
179 // CHECK: xor
182 // CHECK: xor
185 // CHECK: xor
188 // CHECK: xor
191 // CHECK: xor