HomeSort by relevance Sort by last modified time
    Searched defs:GlobalInits (Results 1 - 5 of 5) sorted by null

  /external/swiftshader/third_party/subzero/src/
IceThreading.h 194 std::unique_ptr<VariableDeclarationList> GlobalInits;
IceASanInstrumentation.cpp 130 std::vector<VariableDeclaration::Initializer *> GlobalInits =
132 for (VariableDeclaration::Initializer *Init : GlobalInits) {
IceCfg.h 148 return std::move(GlobalInits);
151 if (GlobalInits == nullptr) {
152 GlobalInits.reset(new VariableDeclarationList);
154 GlobalInits->push_back(Global);
157 if (GlobalInits == nullptr) {
158 GlobalInits.reset(new VariableDeclarationList);
160 return GlobalInits.get();
339 std::unique_ptr<VariableDeclarationList> GlobalInits;
IceGlobalContext.cpp 432 std::unique_ptr<VariableDeclarationList> GlobalInits =
436 Item->setGlobalInits(std::move(GlobalInits));
    [all...]
  /external/llvm/lib/Transforms/IPO/
LowerTypeTests.cpp 499 std::vector<Constant *> GlobalInits;
502 GlobalInits.push_back(G->getInitializer());
513 GlobalInits.push_back(
516 if (!GlobalInits.empty())
517 GlobalInits.pop_back();
518 Constant *NewInit = ConstantStruct::getAnon(M->getContext(), GlobalInits);
    [all...]

Completed in 1197 milliseconds