Home
last modified time | relevance | path

Searched refs:DepthMap (Results 1 – 9 of 9) sorted by relevance

/external/dynamic_depth/internal/dynamic_depth/
Ddepth_map.cc146 DepthMap::DepthMap(const DepthMapParams& params) : params_(params) {} in DepthMap() function in dynamic_depth::DepthMap
149 std::unique_ptr<DepthMap> DepthMap::ParseFields( in ParseFields()
151 const string& prefix = DynamicDepthConst::DepthMap(); in ParseFields()
197 return std::unique_ptr<DepthMap>(new DepthMap(params)); // NOLINT in ParseFields()
201 void DepthMap::GetNamespaces( in GetNamespaces()
207 ns_name_href_map->emplace(DynamicDepthConst::DepthMap(), kNamespaceHref); in GetNamespaces()
210 std::unique_ptr<DepthMap> DepthMap::FromData( in FromData()
256 auto depth_map = std::unique_ptr<DepthMap>(new DepthMap(params)); // NOLINT in FromData()
266 std::unique_ptr<DepthMap> DepthMap::FromDeserializer( in FromDeserializer()
270 DynamicDepthConst::Namespace(DynamicDepthConst::DepthMap()), in FromDeserializer()
[all …]
Dcamera.cc67 std::unique_ptr<DepthMap> depth_map = in ParseFields()
68 DepthMap::FromDeserializer(deserializer); in ParseFields()
174 const DepthMap* Camera::GetDepthMap() const { return params_->depth_map.get(); } in GetDepthMap()
216 DynamicDepthConst::DepthMap()); in Serialize()
Dconst.h15 static const char* DepthMap();
Dconst.cc44 const char* DynamicDepthConst::DepthMap() { return kDepthMap; } in DepthMap() function in dynamic_depth::DynamicDepthConst
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DPhiValues.cpp43 assert(DepthMap.lookup(Phi) == 0); in processPhi()
46 DepthMap[Phi] = DepthNumber; in processPhi()
52 if (DepthMap.lookup(PhiPhiOp) == 0) in processPhi()
54 assert(DepthMap.lookup(PhiPhiOp) != 0); in processPhi()
57 if (!ReachableMap.count(DepthMap[PhiPhiOp])) in processPhi()
58 DepthMap[Phi] = std::min(DepthMap[Phi], DepthMap[PhiPhiOp]); in processPhi()
67 if (DepthMap[Phi] == DepthNumber) { in processPhi()
72 while (!Stack.empty() && DepthMap[Stack.back()] >= DepthNumber) { in processPhi()
75 DepthMap[ComponentPhi] = DepthNumber; in processPhi()
82 auto It = ReachableMap.find(DepthMap[PhiOp]); in processPhi()
[all …]
/external/dynamic_depth/includes/dynamic_depth/
Ddepth_map.h83 class DepthMap : public Element {
92 static std::unique_ptr<DepthMap> FromData(
98 static std::unique_ptr<DepthMap> FromDeserializer(
114 DepthMap(const DepthMap&) = delete;
115 void operator=(const DepthMap&) = delete;
118 explicit DepthMap(const DepthMapParams& params);
119 static std::unique_ptr<DepthMap> ParseFields(
Dcamera.h32 std::unique_ptr<DepthMap> depth_map;
106 const DepthMap* GetDepthMap() const;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
DX86CmovConversion.cpp392 DenseMap<MachineInstr *, DepthInfo> DepthMap; in checkForProfitableCmovCandidates() local
402 DepthMap[nullptr] = {0, 0}; in checkForProfitableCmovCandidates()
451 DepthInfo Info = DepthMap.lookup(DefMI); in checkForProfitableCmovCandidates()
460 DepthMap[OperandToDefMap.lookup(&MI.getOperand(1))].OptDepth, in checkForProfitableCmovCandidates()
461 DepthMap[OperandToDefMap.lookup(&MI.getOperand(2))].OptDepth); in checkForProfitableCmovCandidates()
472 DepthMap[&MI] = {MIDepth += Latency, MIDepthOpt += Latency}; in checkForProfitableCmovCandidates()
555 DepthMap[OperandToDefMap.lookup(&MI->getOperand(3))].Depth; in checkForProfitableCmovCandidates()
557 DepthMap[OperandToDefMap.lookup(&MI->getOperand(1))].Depth, in checkForProfitableCmovCandidates()
558 DepthMap[OperandToDefMap.lookup(&MI->getOperand(2))].Depth); in checkForProfitableCmovCandidates()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
DPhiValues.h83 DenseMap<const PHINode *, unsigned int> DepthMap; variable