Home
last modified time | relevance | path

Searched refs:find_result (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/wasm/
Dwasm-memory.cc181 auto find_result = allocations_.find(buffer_start); in ReleaseAllocation() local
182 CHECK_NE(find_result, allocations_.end()); in ReleaseAllocation()
184 if (find_result != allocations_.end()) { in ReleaseAllocation()
185 size_t num_bytes = find_result->second.allocation_length; in ReleaseAllocation()
195 AllocationData allocation_data = find_result->second; in ReleaseAllocation()
196 allocations_.erase(find_result); in ReleaseAllocation()
/external/grpc-grpc/third_party/py/
Dpython_configure.bzl72 find_result = _execute(
78 return find_result.stdout.replace("\\", "/")
80 find_result = _execute(
83 return find_result.stdout
/external/perf_data_converter/src/quipper/
Dperf_reader.cc392 auto find_result = filenames_to_build_ids.find(build_id.filename()); in InjectBuildIDs() local
393 if (find_result == filenames_to_build_ids.end()) continue; in InjectBuildIDs()
394 const string& build_id_string = find_result->second; in InjectBuildIDs()
448 auto find_result = build_ids_to_filenames.find(build_id_string); in Localize() local
449 if (find_result == build_ids_to_filenames.end()) continue; in Localize()
450 const string& new_filename = find_result->second; in Localize()
461 auto find_result = filename_map.find(build_id.filename()); in LocalizeUsingFilenames() local
462 if (find_result != filename_map.end()) in LocalizeUsingFilenames()
463 build_id.set_filename(find_result->second); in LocalizeUsingFilenames()