HomeSort by relevance Sort by last modified time
    Searched refs:__atomic_load (Results 1 - 4 of 4) sorted by null

  /external/clang/test/CodeGen/
atomics-inlining.c 21 (void)__atomic_load(&c1, &c2, memory_order_seq_cst);
22 (void)__atomic_load(&s1, &s2, memory_order_seq_cst);
23 (void)__atomic_load(&i1, &i2, memory_order_seq_cst);
24 (void)__atomic_load(&ll1, &ll2, memory_order_seq_cst);
30 // PPC32: call void @__atomic_load(i32 8, i8* bitcast (i64* @ll1 to i8*)
42 // MIPS32: call void @__atomic_load(i32 8, i8* bitcast (i64* @ll1 to i8*)
atomic-ops.c 27 __atomic_load(i, &v, memory_order_seq_cst);
262 // CHECK: call void @__atomic_load(i32 512, i8* bitcast ({{.*}} @bigAtomic to i8*),
265 __atomic_load(&smallThing, &b, 5);
266 // CHECK: call void @__atomic_load(i32 3, i8* {{.*}} @smallThing
268 __atomic_load(&bigThing, &f, 5);
269 // CHECK: call void @__atomic_load(i32 512, i8* {{.*}} @bigThing
  /external/clang/test/Sema/
atomic-ops.c 101 __atomic_load(i, I, memory_order_relaxed); // expected-error {{must be a pointer to a trivially-copyable type}}
102 __atomic_load(I, i, memory_order_relaxed); // expected-warning {{passing '_Atomic(int) *' to parameter of type 'int *'}}
103 __atomic_load(I, *P, memory_order_relaxed); member in struct:s2
104 __atomic_load(I, *P, memory_order_relaxed, 42); // expected-error {{too many arguments}} member in struct:s2
105 (int)__atomic_load(I, I, memory_order_seq_cst); // expected-error {{operand of type 'void'}}
106 __atomic_load(s1, s2, memory_order_acquire);
  /external/compiler-rt/lib/
atomic.c 33 #pragma redefine_extname __atomic_load_c __atomic_load

Completed in 969 milliseconds