HomeSort by relevance Sort by last modified time
    Searched refs:Deps (Results 1 - 14 of 14) 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...]
  /hardware/msm7k/libgralloc-qsd8k/
pmemalloc.h 53 class Deps {
65 virtual ~Deps();
83 PmemUserspaceAllocator(Deps& deps, Deps::Allocator& allocator, const char* pmemdev);
109 Deps& deps; member in class:PmemUserspaceAllocator
110 Deps::Allocator& allocator;
128 class Deps {
131 virtual ~Deps();
156 Deps& deps; member in class:PmemKernelAllocator
    [all...]
gpu.h 35 class Deps {
38 virtual ~Deps();
52 gpu_context_t(Deps& deps, PmemAllocator& pmemAllocator,
71 Deps& deps; member in class:gpu_context_t
pmemalloc.cpp 57 PmemUserspaceAllocator::PmemUserspaceAllocator(Deps& deps, Deps::Allocator& allocator, const char* pmemdev):
58 deps(deps),
87 int fd = deps.open(pmemdev, O_RDWR, 0);
90 err = deps.getPmemTotalSize(fd, &size);
98 void* base = deps.mmap(0, size, PROT_READ|PROT_WRITE, MAP_SHARED, fd,
102 strerror(deps.getErrno()));
103 err = -deps.getErrno()
    [all...]
gralloc.cpp 64 class PmemAllocatorDepsDeviceImpl : public PmemUserspaceAllocator::Deps,
65 public PmemKernelAllocator::Deps {
112 class GpuContextDepsDeviceImpl : public gpu_context_t::Deps {
gpu.cpp 26 gpu_context_t::gpu_context_t(Deps& deps, PmemAllocator& pmemAllocator,
28 deps(deps),
58 int err = deps.mapFrameBufferLocked(m);
179 fd = deps.ashmem_create_region("gralloc-buffer", size);
293 deps.terminateBuffer(&m->base, const_cast<private_handle_t*>(hnd));
296 deps.close(hnd->fd);
297 delete hnd; // XXX JMG: move this to the deps
341 gpu_context_t::Deps::~Deps() {
    [all...]
allocator.h 95 class SimpleBestFitAllocator : public PmemUserspaceAllocator::Deps::Allocator
  /external/llvm/lib/Analysis/
MemDepPrinter.cpp 41 DepSetMap Deps;
59 Deps.clear();
109 Deps[Inst].insert(std::make_pair(getInstTypePair(Res),
115 DepSet &InstDeps = Deps[Inst];
126 Deps[Inst].insert(std::make_pair(getInstTypePair(0, Unknown),
135 Deps[Inst].insert(std::make_pair(getInstTypePair(0, Unknown),
148 DepSet &InstDeps = Deps[Inst];
164 DepSetMap::const_iterator DI = Deps.find(Inst);
165 if (DI == Deps.end())
  /external/llvm/lib/CodeGen/
MachineTraceMetrics.cpp 547 SmallVectorImpl<DataDep> &Deps,
562 Deps.push_back(DataDep(MRI, Reg, MO.getOperandNo()));
569 // This will add at most one dependency to Deps.
571 SmallVectorImpl<DataDep> &Deps,
581 Deps.push_back(DataDep(MRI, Reg, i));
607 SmallVectorImpl<DataDep> &Deps,
634 Deps.push_back(DataDep(I->MI, I->Op, MO.getOperandNo()));
713 SmallVector<DataDep, 8> Deps;
730 Deps.clear();
732 getPHIDeps(UseMI, Deps, TBI.Pred, MTM.MRI)
    [all...]
InlineSpiller.cpp 115 TinyPtrVector<VNInfo*> Deps;
325 OS << " deps[";
326 for (unsigned i = 0, e = SVI.Deps.size(); i != e; ++i)
327 OS << ' ' << SVI.Deps[i]->id << '@' << SVI.Deps[i]->def;
344 // When VNI is non-NULL, add it to SVI's deps, and only propagate to that.
348 SVI->second.Deps.push_back(VNI);
363 TinyPtrVector<VNInfo*> *Deps = VNI ? &FirstDeps : &SVI->second.Deps;
370 DEBUG(dbgs() << " prop to " << Deps->size() << ":
    [all...]
  /hardware/msm7k/libgralloc-qsd8k/tests/
pmemalloc_test.cpp 26 class DepsStub : public PmemUserspaceAllocator::Deps, public PmemKernelAllocator::Deps {
70 class AllocatorStub : public PmemUserspaceAllocator::Deps::Allocator {
  /external/clang/lib/StaticAnalyzer/Core/
SymbolManager.cpp 381 if (const SymbolRefSmallVectorTy *Deps = SymMgr.getDependentSymbols(sym)) {
382 for (SymbolRefSmallVectorTy::const_iterator I = Deps->begin(),
383 E = Deps->end(); I != E; ++I) {
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp 325 const MemoryDependenceAnalysis::NonLocalDepInfo &deps = local
332 for (unsigned i = 0, e = deps.size(); i != e; ++i) {
333 const NonLocalDepEntry *I = &deps[i];
    [all...]
  /build/core/
java.mk 336 # Deps for generated source files must be handled separately,
337 # via deps on the target that generates the sources.

Completed in 194 milliseconds