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

  /external/llvm/unittests/ADT/
DAGDeltaAlgorithmTest.cpp 61 std::vector<edge_ty> Deps;
65 Deps.clear();
66 Deps.push_back(std::make_pair(3, 1));
72 EXPECT_EQ(fixed_set(4, 1, 3, 5, 7), FDA.Run(range(20), Deps));
79 Deps.clear();
80 Deps.push_back(std::make_pair(1, 0));
81 Deps.push_back(std::make_pair(2, 0));
82 Deps.push_back(std::make_pair(4, 0));
83 Deps.push_back(std::make_pair(3, 2));
91 EXPECT_EQ(fixed_set(4, 0, 1, 2, 3), FDA2.Run(range(5), Deps));
    [all...]
  /external/llvm/lib/Analysis/
MemDepPrinter.cpp 40 DepSetMap Deps;
58 Deps.clear();
107 Deps[Inst].insert(std::make_pair(getInstTypePair(Res),
113 DepSet &InstDeps = Deps[Inst];
125 DepSet &InstDeps = Deps[Inst];
141 DepSetMap::const_iterator DI = Deps.find(Inst);
142 if (DI == Deps.end())
  /external/v8/build/android/gyp/
write_build_config.py 22 1. inputs/deps of the action ensure that the files are available the first
25 a. inputs/deps ensure that the action runs whenever one of the files changes
43 # Types that should not allow code deps to pass through.
107 class Deps(object):
137 """Merges all assets from the given deps.
157 # deps of the same target override previous ones.
192 '--possible-deps-configs',
248 help='Whether there is alternative-locale-resource in direct deps')
293 deps = Deps(direct_deps_config_paths
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopLoadElimination.cpp 129 const auto *Deps = LAI.getDepChecker().getDependences();
130 if (!Deps)
139 for (const auto &Dep : *Deps) {
  /toolchain/binutils/binutils-2.25/gold/
dynobj.h 397 Verdef(const char* name, const std::vector<std::string>& deps,
399 : name_(name), deps_(deps), is_base_(is_base), is_weak_(is_weak),
451 typedef std::vector<std::string> Deps;
457 Deps deps_;
  /external/llvm/lib/CodeGen/
InlineSpiller.cpp 120 TinyPtrVector<VNInfo*> Deps;
331 OS << " deps[";
332 for (unsigned i = 0, e = SVI.Deps.size(); i != e; ++i)
333 OS << ' ' << SVI.Deps[i]->id << '@' << SVI.Deps[i]->def;
352 // When VNI is non-NULL, add it to SVI's deps, and only propagate to that.
356 SVI->second.Deps.push_back(VNI);
369 TinyPtrVector<VNInfo*> *Deps = VNI ? &FirstDeps : &SVI->second.Deps;
376 DEBUG(dbgs() << " prop to " << Deps->size() << ":
    [all...]
MachineScheduler.cpp     [all...]

Completed in 269 milliseconds