Home
last modified time | relevance | path

Searched refs:Simple (Results 1 – 25 of 998) sorted by relevance

12345678910>>...40

/llvm-project-15.0.7/clang/test/Sema/
H A Dbuiltins-arm64-exclusive.c3 struct Simple { struct
17 sum += __builtin_arm_ldrex((struct Simple **)addr)->a; in test_ldrex() argument
23 …sum += __builtin_arm_ldrex((struct Simple *)addr).a; // expected-error {{address argument to atomi… in test_ldrex()
32 struct Simple var = {0}; in test_strex()
40 res |= __builtin_arm_strex(&var, (struct Simple **)addr); in test_strex()
49 …res |= __builtin_arm_strex(&var, (struct Simple **)addr).a; // expected-error {{is not a structure… in test_strex()
66 sum += __builtin_arm_ldaex((struct Simple **)addr)->a; in test_ldaex()
72 …sum += __builtin_arm_ldaex((struct Simple *)addr).a; // expected-error {{address argument to atomi… in test_ldaex()
81 struct Simple var = {0}; in test_stlex()
89 res |= __builtin_arm_stlex(&var, (struct Simple **)addr); in test_stlex()
[all …]
H A Dbuiltins-arm-exclusive.c3 struct Simple { struct
16 sum += __builtin_arm_ldrex((struct Simple **)addr)->a; in test_ldrex() argument
22 …sum += __builtin_arm_ldrex((struct Simple *)addr).a; // expected-error {{address argument to atomi… in test_ldrex()
33 struct Simple var = {0}; in test_strex()
40 res |= __builtin_arm_strex(&var, (struct Simple **)addr); in test_strex()
49 …res |= __builtin_arm_strex(&var, (struct Simple **)addr).a; // expected-error {{is not a structure… in test_strex()
67 sum += __builtin_arm_ldaex((struct Simple **)addr)->a; in test_ldaex()
73 …sum += __builtin_arm_ldaex((struct Simple *)addr).a; // expected-error {{address argument to atomi… in test_ldaex()
84 struct Simple var = {0}; in test_stlex()
91 res |= __builtin_arm_stlex(&var, (struct Simple **)addr); in test_stlex()
[all …]
/llvm-project-15.0.7/compiler-rt/test/msan/
H A Duse-after-dtor.cpp21 struct Simple { struct
23 Simple() { in Simple() argument
26 ~Simple() { in ~Simple() argument
33 assert(sizeof(Simple) <= sizeof(buf)); in main()
35 Simple *s = new(&buf) Simple(); in main()
36 s->~Simple(); in main()
H A Ddtor-member.cpp21 struct Simple { struct
23 Simple() { in Simple() argument
26 ~Simple() { } in ~Simple() argument
31 assert(sizeof(Simple) <= sizeof(buf)); in main()
37 Simple *s = new(&buf) Simple(); in main()
38 s->~Simple(); in main()
H A Ddtor-bit-fields.cpp35 struct Simple { struct
37 ~Simple() {} in ~Simple() argument
61 Simple *s = new Simple(); in main()
62 s->~Simple(); in main()
/llvm-project-15.0.7/clang/test/Profile/
H A Dcxx-class.cpp20 class Simple { class
26 explicit Simple(int Member) : Member(Member) { in Simple() function in Simple
39 ~Simple() { in ~Simple()
63 class Derived : virtual public Simple {
68 Derived() : Simple(0) { in Derived()
100 Simple S(I); in simple_wrapper()
/llvm-project-15.0.7/compiler-rt/test/fuzzer/
H A DUseAfterDtor.cpp4 struct Simple { struct
6 Simple() { in Simple() argument
9 ~Simple() { in ~Simple() argument
14 Simple *volatile SimpleSink;
20 Simple S; in LLVMFuzzerTestOneInput()
/llvm-project-15.0.7/clang/test/CodeGen/
H A Dbuiltins-arm-exclusive.c4 struct Simple { struct
88 sum += __builtin_arm_ldrex((struct Simple **)addr)->a; in test_ldrex()
181 sum += __builtin_arm_ldaex((struct Simple **)addr)->a; in test_ldaex()
198 struct Simple var = {0}; in test_strex()
254 res |= __builtin_arm_strex(&var, (struct Simple **)addr); in test_strex()
272 struct Simple var = {0}; in test_stlex()
328 res |= __builtin_arm_stlex(&var, (struct Simple **)addr); in test_stlex()
/llvm-project-15.0.7/clang/test/CodeGenCXX/
H A Dsanitize-dtor-tail-call.cpp5 struct Simple { struct
7 Simple() { in Simple() argument
10 ~Simple() { in ~Simple() argument
15 Simple s;
H A Dsanitize-dtor-callback.cpp7 struct Simple { struct
9 ~Simple() {} in ~Simple() argument
11 Simple s;
41 Simple s;
H A Dsanitize-no-dtor-callback.cpp5 struct Simple { struct
7 ~Simple() {} in ~Simple() argument
9 Simple s;
H A Dsanitize-dtor-bit-field.cpp32 struct Simple { struct
34 ~Simple() {} in ~Simple() argument
36 Simple s;
/llvm-project-15.0.7/lldb/test/API/lang/objc/objc-checker/
H A Dmain.m10 @interface Simple : NSObject interface
19 @implementation Simple implementation
41 Simple *my_simple = [[Simple alloc] init];
/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-advanced/
H A Dmain.cpp35 struct Simple struct
40 Simple(int X, float Y, char Z) : in Simple() argument
65 Simple* s;
67 s(new Simple(X,Y,Z)) {} in Couple()
164 Simple a_simple_object(3,0.14,'E'); in main()
/llvm-project-15.0.7/clang/test/APINotes/
H A Dyaml-roundtrip.test1 RUN: apinotes-test %S/Inputs/Frameworks/Simple.framework/Headers/Simple.apinotes > %t.result
2 RUN: not diff -b %S/Inputs/Frameworks/Simple.framework/Headers/Simple.apinotes %t.result | FileChec…
/llvm-project-15.0.7/libcxx/test/std/ranges/range.adaptors/range.zip/
H A Dtypes.h34 template <bool Simple>
39 requires(!Simple) in begin()
45 requires(!Simple) in end()
63 template <bool Simple>
69 requires(!Simple) { in begin()
74 requires(!Simple) { in end()
89 template <bool Simple>
93 requires(!Simple) { in begin()
98 requires(!Simple) { in end()
113 template <bool Simple>
[all …]
/llvm-project-15.0.7/llvm/test/TableGen/
H A DRelTest.td9 let Namespace = "Simple";
12 def SimpleRegClass : RegisterClass<"Simple",[i32],0,(add R0)>;
30 let Namespace = "Simple";
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/modernize/
H A Duse-override-no-destructors.cpp9 struct Simple : public Base { struct
10 virtual ~Simple();
H A Duse-override-allow-override-and-final.cpp17 struct Simple : public Base { struct
18 virtual ~Simple();
/llvm-project-15.0.7/clang/test/Index/
H A Dms-property.cpp4 struct Simple { struct
20 Simple s; in test()
/llvm-project-15.0.7/llvm/test/CodeGen/ARM/
H A Dthumb1-varalloc.ll47 ; Simple variable ending up *at* sp.
61 ; Simple variable ending up at aligned offset from sp.
82 ; Simple variable ending up at aligned offset from sp.
/llvm-project-15.0.7/llvm/unittests/DebugInfo/PDB/
H A DStringTableBuilderTest.cpp22 TEST(StringTableBuilderTest, Simple) { in TEST() argument
78 TEST(StringTableHashTraitsTest, Simple) { in TEST() argument
/llvm-project-15.0.7/llvm/test/Instrumentation/AddressSanitizer/
H A Dfake-stack.ll19 define void @Simple() uwtable sanitize_address {
20 ; NEVER-LABEL: @Simple(
33 ; NEVER-NEXT: store i64 ptrtoint (void ()* @Simple to i64), i64* [[TMP7]], align 8
46 ; RUNTIME-LABEL: @Simple(
75 ; RUNTIME-NEXT: store i64 ptrtoint (void ()* @Simple to i64), i64* [[TMP17]], align 8
103 ; ALWAYS-LABEL: @Simple(
125 ; ALWAYS-NEXT: store i64 ptrtoint (void ()* @Simple to i64), i64* [[TMP12]], align 8
/llvm-project-15.0.7/llvm/utils/TableGen/
H A DInfoByHwMode.cpp47 bool Simple = isSimple(); in operator ==() local
48 if (Simple != T.isSimple()) in operator ==()
50 if (Simple) in operator ==()
/llvm-project-15.0.7/llvm/test/Transforms/LoopVectorize/
H A Dtripcount.ll11 ; Simple loop with low tripcount. Should not be vectorized.
90 ; Simple loop with low tripcount and inequality test for exit.
115 ; Simple loop with constant, small trip count and no profiling info.
139 ; Simple loop with constant large trip count and no profiling info.
163 ; Simple loop with static, small trip count and no profiling info.

12345678910>>...40