HomeSort by relevance Sort by last modified time
    Searched refs:Inserted (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/llvm/lib/IR/
PassRegistry.cpp 55 bool Inserted =
57 assert(Inserted && "Pass registered multiple times!");
58 (void)Inserted;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Utils/
FunctionComparator.h 74 bool Inserted;
75 std::tie(MapIter, Inserted) = GlobalNumbers.insert({Global, NextNumber});
76 if (Inserted)
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
PassRegistry.cpp 60 bool Inserted =
62 assert(Inserted && "Pass registered multiple times!");
63 (void)Inserted;
  /external/llvm/lib/Transforms/Instrumentation/
CFGMST.h 187 bool Inserted;
188 std::tie(Iter, Inserted) = BBInfos.insert(std::make_pair(Src, nullptr));
189 if (Inserted) {
190 // Newly inserted, update the real info.
194 std::tie(Iter, Inserted) = BBInfos.insert(std::make_pair(Dest, nullptr));
195 if (Inserted)
196 // Newly inserted, update the real info.
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Instrumentation/
CFGMST.h 258 bool Inserted;
259 std::tie(Iter, Inserted) = BBInfos.insert(std::make_pair(Src, nullptr));
260 if (Inserted) {
261 // Newly inserted, update the real info.
265 std::tie(Iter, Inserted) = BBInfos.insert(std::make_pair(Dest, nullptr));
266 if (Inserted)
267 // Newly inserted, update the real info.
  /external/llvm/include/llvm/CodeGen/
MachineDominators.h 54 /// \brief Remember all the basic blocks that are inserted during
238 bool Inserted = NewBBs.insert(NewBB).second;
239 (void)Inserted;
240 assert(Inserted &&
241 "A basic block inserted via edge splitting cannot appear twice");
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
MachineDominators.h 61 /// Remember all the basic blocks that are inserted during
246 bool Inserted = NewBBs.insert(NewBB).second;
247 (void)Inserted;
248 assert(Inserted &&
249 "A basic block inserted via edge splitting cannot appear twice");
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
DeclContext.cpp 185 bool Inserted;
189 std::tie(ContextIter, Inserted) = Contexts.insert(NewContext);
190 assert(Inserted && "Failed to insert DeclContext");
191 (void)Inserted;