Searched defs:Mapped (Results 1 - 8 of 8) sorted by relevance

/external/libcxx/test/std/containers/
H A Dmap_allocator_requirement_test_templates.h37 typedef typename Container::mapped_type Mapped; typedef
165 typedef typename Container::mapped_type Mapped; typedef
166 typedef typename std::pair<Key, Mapped> NonConstKeyPair;
255 CHECKPOINT("Testing C::insert(p, pair<Key, Mapped> const&)");
272 CHECKPOINT("Testing C::insert(p, pair<Key, Mapped>&&)");
298 typedef typename Container::mapped_type Mapped; typedef
299 typedef typename std::pair<Key, Mapped> NonConstKeyPair;
357 CHECKPOINT("Testing C::emplace(pair<Key, Mapped> const&)");
370 CHECKPOINT("Testing C::emplace(pair<Key, Mapped> &&)");
396 CHECKPOINT("Testing C::emplace(Key&, Mapped
446 typedef typename Container::mapped_type Mapped; typedef
[all...]
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DValueMapper.cpp106 Value *Mapped = 0; local
109 Mapped = MapValue(Op, VM, Flags, TypeMapper);
110 if (Mapped != C) break;
132 Ops.push_back(cast<Constant>(Mapped));
/external/llvm/lib/Transforms/Utils/
H A DLoopVersioning.cpp157 auto Mapped = VMap.find(ClonedValue); local
158 if (Mapped != VMap.end())
159 ClonedValue = Mapped->second;
H A DValueMapper.cpp419 auto Mapped = mapValue(V);
420 assert((Mapped || (Flags & RF_NullMapMissingGlobalValues)) &&
423 return Mapped;
429 Value *Mapped = nullptr; local
432 Mapped = mapValueOrNull(Op);
433 if (!Mapped)
435 if (Mapped != Op)
458 Ops.push_back(cast<Constant>(Mapped));
462 Mapped = mapValueOrNull(C->getOperand(OpNo));
463 if (!Mapped)
[all...]
/external/llvm/tools/llvm-cov/
H A DSourceCoverageView.h80 bool Mapped; member in struct:llvm::LineCoverageStats
82 LineCoverageStats() : ExecutionCount(0), RegionCount(0), Mapped(false) {}
84 bool isMapped() const { return Mapped; }
95 Mapped = true;
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypes.cpp85 unsigned Mapped = 0; local
87 Mapped |= 1;
107 Mapped |= 2;
109 Mapped |= 4;
111 Mapped |= 8;
113 Mapped |= 16;
115 Mapped |= 32;
117 Mapped |= 64;
119 Mapped |= 128;
125 if ((Node.getNodeId() == NewNode && Mapped >
[all...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DLegalizeTypes.cpp84 unsigned Mapped = 0; local
86 Mapped |= 1;
106 Mapped |= 2;
108 Mapped |= 4;
110 Mapped |= 8;
112 Mapped |= 16;
114 Mapped |= 32;
116 Mapped |= 64;
118 Mapped |= 128;
124 if ((I->getNodeId() == NewNode && Mapped >
[all...]
/external/spirv-llvm/lib/SPIRV/libSPIRV/
H A DSPIRVModule.cpp520 SPIRVEntry *Mapped = nullptr; local
521 if (exist(Id, &Mapped)) {
522 if (Mapped->getOpCode() == OpForward) {
523 replaceForward(static_cast<SPIRVForward *>(Mapped), Entry);
525 assert(Mapped == Entry && "Id used twice");

Completed in 242 milliseconds