Home
last modified time | relevance | path

Searched refs:cached_result (Results 1 – 5 of 5) sorted by relevance

/external/deqp-deps/SPIRV-Tools/source/opt/
Dreduce_load_size.cpp132 auto cached_result = should_replace_cache_.find(op_inst->result_id()); in ShouldReplaceExtract() local
133 if (cached_result != should_replace_cache_.end()) { in ShouldReplaceExtract()
134 return cached_result->second; in ShouldReplaceExtract()
Dupgrade_memory_model.cpp195 auto& cached_result = cache_[std::make_pair(inst->result_id(), indices)]; in TraceInstruction() local
196 cached_result.first = false; in TraceInstruction()
197 cached_result.second = false; in TraceInstruction()
234 cached_result.first = true; in TraceInstruction()
235 cached_result.second = true; in TraceInstruction()
260 cached_result.first = is_coherent; in TraceInstruction()
261 cached_result.second = is_volatile; in TraceInstruction()
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dreduce_load_size.cpp132 auto cached_result = should_replace_cache_.find(op_inst->result_id()); in ShouldReplaceExtract() local
133 if (cached_result != should_replace_cache_.end()) { in ShouldReplaceExtract()
134 return cached_result->second; in ShouldReplaceExtract()
Dupgrade_memory_model.cpp212 auto& cached_result = cache_[std::make_pair(inst->result_id(), indices)]; in TraceInstruction() local
213 cached_result.first = false; in TraceInstruction()
214 cached_result.second = false; in TraceInstruction()
251 cached_result.first = true; in TraceInstruction()
252 cached_result.second = true; in TraceInstruction()
277 cached_result.first = is_coherent; in TraceInstruction()
278 cached_result.second = is_volatile; in TraceInstruction()
/external/chromium-trace/catapult/devil/devil/android/
Ddevice_utils.py630 cached_result = self._cache['package_apk_paths'].get(package)
631 if cached_result is not None and not skip_cache:
637 if cached_result and not self.PathExists(cached_result):
638 cached_result = None
640 if cached_result is not None:
641 return list(cached_result)