HomeSort by relevance Sort by last modified time
    Searched defs:St (Results 1 - 25 of 34) sorted by null

1 2

  /external/clang/test/OpenMP/
openmp_common.c 13 } St;
atomic_codegen.cpp 8 struct St {
10 St() {}
11 ~St() {}
17 St s;
20 // CHECK: invoke void @_ZN2StC1Ev(%struct.St* [[TEMP_ST_ADDR:%.+]])
21 // CHECK: [[SCALAR_ADDR:%.+]] = invoke dereferenceable(4) i32* @_ZN2St3getEv(%struct.St* [[TEMP_ST_ADDR]])
24 // CHECK: invoke void @_ZN2StD1Ev(%struct.St* [[TEMP_ST_ADDR]])
26 b = St().get();
27 // CHECK-DAG: invoke void @_ZN2StC1Ev(%struct.St* [[TEMP_ST_ADDR:%.+]])
28 // CHECK-DAG: [[SCALAR_ADDR:%.+]] = invoke dereferenceable(4) i32* @_ZN2St3getEv(%struct.St* [[TEMP_ST_ADDR]]
    [all...]
sections_firstprivate_codegen.cpp 11 struct St {
13 St() : a(0), b(0) {}
14 St(const St &st) : a(st.a + st.b), b(0) {}
15 ~St() {}
25 S(const S &s, St t = St()) : f(s.f + t.a) {
    [all...]
single_codegen.cpp 173 struct St {
175 St() : a(0), b(0) {}
176 St &operator=(const St &) { return *this; };
177 ~St() {}
180 void array_func(int n, int a[n], St s[2]) {
187 // ARRAY: store %struct.St* %{{.+}}, %struct.St** %{{.+}},
single_firstprivate_codegen.cpp 11 struct St {
13 St() : a(0), b(0) {}
14 St(const St &st) : a(st.a + st.b), b(0) {}
15 ~St() {}
25 S(const S &s, St t = St()) : f(s.f + t.a) {
    [all...]
for_firstprivate_codegen.cpp 11 struct St {
13 St() : a(0), b(0) {}
14 St(const St &st) : a(st.a + st.b), b(0) {}
15 ~St() {}
26 S(const S &s, St t = St()) : f(s.f + t.a) {
    [all...]
parallel_copyin_codegen.cpp 481 struct St {
483 St() : a(0), b(0) {}
484 St &operator=(const St &) { return *this; };
485 ~St() {}
490 static St s[2];
494 // ARRAY: call dereferenceable(8) %struct.St* @{{.+}}(%struct.St* %{{.+}}, %struct.St* dereferenceable(8) %{{.+}})
500 // TLS-ARRAY: call dereferenceable(8) %struct.St* @{{.+}}(%struct.St* %{{.+}}, %struct.St* dereferenceable(8) %{{.+}}
    [all...]
parallel_firstprivate_codegen.cpp 12 struct St {
14 St() : a(0), b(0) {}
15 St(const St &st) : a(st.a + st.b), b(0) {}
16 ~St() {}
26 S(const S &s, St t = St()) : f(s.f + t.a) {
    [all...]
task_firstprivate_codegen.cpp 462 struct St {
464 St() : a(0), b(0) {}
465 St(const St &) {}
466 ~St() {}
469 void array_func(int n, float a[n], St s[2]) {
473 // ARRAY: store %struct.St** %{{.+}}, %struct.St*** %{{.+}},
task_private_codegen.cpp 370 struct St {
372 St() : a(0), b(0) {}
373 St &operator=(const St &) { return *this; };
374 ~St() {}
377 void array_func(int n, float a[n], St s[2]) {
381 // ARRAY: store %struct.St** %{{.+}}, %struct.St*** %{{.+}},
threadprivate_ast_print.cpp 13 struct St{
36 struct ST {
44 v = ST<T>::m;
  /external/clang/test/SemaCXX/
ms-property-error.cpp 12 class St {
17 ~St() {
29 St<float> *p2 = 0;
30 St<int> a; // expected-note {{in instantiation of member function 'St<int>::~St' requested here}}
ms-property.cpp 28 class St {
33 ~St() { x[0][0] = x[1][1]; }
42 St<float> *p2 = 0;
43 // CHECK: St<int> a;
44 St<int> a;
  /external/clang/test/CodeGen/
2003-09-30-StructLayout.c 7 struct St {
16 void func(struct St* A) {
  /external/clang/lib/StaticAnalyzer/Checkers/
UndefBranchChecker.cpp 30 ProgramStateRef St;
34 : St(S), LCtx(L) {}
49 return St->getSVal(Ex, LCtx).isUndef();
89 ProgramStateRef St = N->getState();
93 St = PrevN->getState();
95 FindUndefExpr FindIt(St, Ctx.getLocationContext());
  /external/llvm/lib/Fuzzer/
FuzzerIO.cpp 24 struct stat St;
25 if (stat(Path.c_str(), &St))
27 return St.st_mtime;
  /external/clang/test/CodeGenCXX/
ms-property.cpp 29 class St {
42 St<T> bar;
55 St<float> *p2 = 0;
61 // CHECK: call float @"\01?GetX@?$St@M@@QEAAMMM@Z"(%class.St* %{{.+}}, float 2.230000e+02, float 1.100000e+01)
64 // CHECK-NEXT: [[CALL:%.+]] = call float @"\01?PutX@?$St@M@@QEAAMMMM@Z"(%class.St* %{{.+}}, float 2.300000e+01, float 1.000000e+00, float [[J1]])
70 // CHECK-NEXT: [[GET:%.+]] = call float @"\01?GetX@?$St@M@@QEAAMMM@Z"(%class.St* %{{.+}}, float [[CONV]], float 1.000000e+00)
73 // CHECK-NEXT: call float @"\01?PutX@?$St@M@@QEAAMMMM@Z"(%class.St* %{{.+}}, float [[CONV]], float 1.000000e+00, float [[INC]]
    [all...]
  /external/llvm/lib/CodeGen/
GCRootLowering.cpp 217 Value *St =
219 CI->replaceAllUsesWith(St);
  /external/clang/test/Analysis/
NewDelete-checker-test.cpp 209 StWithConstPtr *St = new StWithConstPtr();
210 escapeStruct(*St);
214 StWithConstPtr *St = new StWithConstPtr();
215 escapePtr(St);
219 StWithConstPtr St;
220 St.memp = new int(2);
221 escapeVoidPtr(St.memp);
  /external/llvm/lib/Transforms/Scalar/
LoopInterchange.cpp 95 StoreInst *St = dyn_cast<StoreInst>(I);
96 if (!St && !Ld)
100 if (St && !St->isSimple())
243 // 1st dependency as '>'
    [all...]
  /external/clang/lib/Analysis/
ThreadSafetyCommon.cpp 658 til::SExpr *St = new (Arena) til::Store(Ptr, E);
659 return St;
    [all...]
Consumed.cpp 932 ConsumedState St = PInfo.getAsState(StateMap);
934 if (St != consumed::CS_None) {
935 StateMap->setState(Var, St);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypesGeneric.cpp 475 StoreSDNode *St = cast<StoreSDNode>(N);
476 EVT ValueVT = St->getValue().getValueType();
478 SDValue Chain = St->getChain();
479 SDValue Ptr = St->getBasePtr();
480 unsigned Alignment = St->getAlignment();
481 bool isVolatile = St->isVolatile();
482 bool isNonTemporal = St->isNonTemporal();
483 AAMDNodes AAInfo = St->getAAInfo();
489 GetExpandedOp(St->getValue(), Lo, Hi);
494 Lo = DAG.getStore(Chain, dl, Lo, Ptr, St->getPointerInfo()
    [all...]
  /external/libcxxabi/src/
cxa_demangle.cpp 718 // st <type> # sizeof (a type)
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelDAGToDAG.cpp     [all...]

Completed in 1355 milliseconds

1 2