OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:smallThing
(Results
1 - 3
of
3
) sorted by null
/external/clang/test/Sema/
atomic-requires-library-error.c
11
struct bar
smallThing
;
20
__atomic_store(&
smallThing
, &b, 5);
28
__atomic_load(&
smallThing
, &b, 5);
/external/clang/test/CodeGen/
big-atomic-ops.c
242
struct bar
smallThing
, thing1, thing2;
253
__atomic_store(&
smallThing
, &b, 5);
254
// CHECK: call void @__atomic_store(i64 3, i8* {{.*}} @
smallThing
265
__atomic_load(&
smallThing
, &b, 5);
266
// CHECK: call void @__atomic_load(i64 3, i8* {{.*}} @
smallThing
283
_Bool x = __atomic_compare_exchange(&
smallThing
, &thing1, &thing2, 1, 5, 5);
284
// CHECK: call zeroext i1 @__atomic_compare_exchange(i64 3, {{.*}} @
smallThing
{{.*}} @thing1{{.*}} @thing2
atomic-ops.c
373
struct bar
smallThing
, thing1, thing2;
381
__atomic_store(&
smallThing
, &b, 5);
382
// CHECK: call void @__atomic_store(i32 3, i8* {{.*}} @
smallThing
390
__atomic_load(&
smallThing
, &b, 5);
391
// CHECK: call void @__atomic_load(i32 3, i8* {{.*}} @
smallThing
410
_Bool x = __atomic_compare_exchange(&
smallThing
, &thing1, &thing2, 1, 5, 5);
411
// CHECK: %[[call1:.*]] = call zeroext i1 @__atomic_compare_exchange(i32 3, {{.*}} @
smallThing
{{.*}} @thing1{{.*}} @thing2
Completed in 92 milliseconds