Home
last modified time | relevance | path

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

/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/
Dcompact_ids_pass.cpp34 const auto insertion_result = result_id_mapping->emplace(id, new_id); in GetRemappedId() local
35 it = insertion_result.first; in GetRemappedId()
36 assert(insertion_result.second); in GetRemappedId()
/external/deqp-deps/SPIRV-Tools/source/opt/
Dcompact_ids_pass.cpp34 const auto insertion_result = result_id_mapping->emplace(id, new_id); in GetRemappedId() local
35 it = insertion_result.first; in GetRemappedId()
36 assert(insertion_result.second); in GetRemappedId()
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dcompact_ids_pass.cpp34 const auto insertion_result = result_id_mapping->emplace(id, new_id); in GetRemappedId() local
35 it = insertion_result.first; in GetRemappedId()
36 assert(insertion_result.second); in GetRemappedId()
/external/libchrome/base/trace_event/
Dprocess_memory_dump.cc262 auto insertion_result = allocator_dumps_.insert( in AddAllocatorDumpInternal() local
264 MemoryAllocatorDump* inserted_mad = insertion_result.first->second.get(); in AddAllocatorDumpInternal()
265 DCHECK(insertion_result.second) << "Duplicate name: " in AddAllocatorDumpInternal()
/external/cronet/base/trace_event/
Dprocess_memory_dump.cc297 auto insertion_result = allocator_dumps_.insert( in AddAllocatorDumpInternal() local
299 MemoryAllocatorDump* inserted_mad = insertion_result.first->second.get(); in AddAllocatorDumpInternal()
300 DCHECK(insertion_result.second) << "Duplicate name: " in AddAllocatorDumpInternal()
/external/cronet/net/third_party/quiche/src/quiche/quic/core/
Dquic_dispatcher.cc1004 auto insertion_result = reference_counted_session_map_.insert( in TryAddNewConnectionId() local
1006 if (!insertion_result.second) { in TryAddNewConnectionId()
1009 return insertion_result.second; in TryAddNewConnectionId()
1292 auto insertion_result = reference_counted_session_map_.insert(std::make_pair( in CreateSessionFromChlo() local
1294 std::shared_ptr<QuicSession> session_ptr = insertion_result.first->second; in CreateSessionFromChlo()
1295 if (!insertion_result.second) { in CreateSessionFromChlo()
/external/tensorflow/tensorflow/compiler/mlir/xla/transforms/
Dxla_legalize_tf.cc91 auto insertion_result = op_name_to_error_info.emplace( in EmitLegalizationErrors() local
93 ++insertion_result.first->second.first; in EmitLegalizationErrors()
/external/webrtc/test/network/
Dnetwork_emulation_manager.cc291 bool insertion_result = in CreateEmulatedNetworkManagerInterface() local
294 RTC_CHECK(insertion_result) in CreateEmulatedNetworkManagerInterface()
/external/rust/crates/grpcio-sys/grpc/src/core/lib/surface/
Dchannel.cc467 auto insertion_result = channel->registration_table->map.insert( in grpc_channel_register_call() local
469 return &insertion_result.first->second; in grpc_channel_register_call()