HomeSort by relevance Sort by last modified time
    Searched refs:LookupOrInsert (Results 1 - 25 of 34) sorted by null

1 2

  /external/tensorflow/tensorflow/core/lib/gtl/
map_util_test.cc 41 TEST(MapUtil, LookupOrInsert) {
47 EXPECT_EQ("xyz", gtl::LookupOrInsert(&m, "foo", "xyz"));
48 EXPECT_EQ("xyz", gtl::LookupOrInsert(&m, "foo", "abc"));
map_util.h 143 typename Collection::value_type::second_type& LookupOrInsert(
150 typename Collection::value_type::second_type& LookupOrInsert(
154 return LookupOrInsert(collection,
  /external/v8/src/compiler/
bytecode-liveness-map.cc 26 .LookupOrInsert(offset, OffsetHash(offset),
state-values-utils.cc 122 hash_map_.LookupOrInsert(&key, hash, ZoneAllocationPolicy(zone()));
  /external/v8/src/
address-map.h 26 LookupOrInsert(key, Hash(key))->value = index;
identity-map.h 65 int LookupOrInsert(Object* key);
identity-map.cc 131 int IdentityMapBase::LookupOrInsert(Object* key) {
169 int index = LookupOrInsert(key);
keys.cc     [all...]
  /external/v8/src/snapshot/
startup-serializer.h 42 bool LookupOrInsert(HeapObject* obj, int* index_out) {
references.h 172 LookupOrInsert(key, Hash(key))->value = reference;
startup-serializer.cc 100 if (!partial_cache_index_map_.LookupOrInsert(heap_object, &index)) {
serializer.h 99 return impl_.LookupOrInsert(reinterpret_cast<void*>(code_address),
  /external/v8/src/base/
hashmap.h 57 Entry* LookupOrInsert(const Key& key, uint32_t hash,
64 Entry* LookupOrInsert(const Key& key, uint32_t hash, const Func& value_func,
171 TemplateHashMapImpl<Key, Value, MatchFun, AllocationPolicy>::LookupOrInsert(
173 return LookupOrInsert(key, hash, []() { return Value(); }, allocator);
180 TemplateHashMapImpl<Key, Value, MatchFun, AllocationPolicy>::LookupOrInsert(
493 return Iterator(this, this->LookupOrInsert(key, key->Hash(), allocator));
  /external/v8/src/interpreter/
constant-array-builder.cc 231 .LookupOrInsert(reinterpret_cast<intptr_t>(raw_string),
240 .LookupOrInsert(reinterpret_cast<intptr_t>(bigint.c_str()),
249 .LookupOrInsert(reinterpret_cast<intptr_t>(scope),
  /external/protobuf/src/google/protobuf/stubs/
map_util.h 395 LookupOrInsert(Collection* const collection,
403 LookupOrInsert(Collection* const collection,
406 return LookupOrInsert(
428 LookupOrInsert(count_map, *it,
  /external/v8/src/profiler/
strings-storage.cc 111 return names_.LookupOrInsert(const_cast<char*>(str), hash);
allocation-tracker.cc 248 base::HashMap::Entry* entry = id_to_function_info_index_.LookupOrInsert(
heap-snapshot-generator.cc 328 // LookupOrInsert has added a new item or just returning exisiting one
351 base::HashMap::Entry* to_entry = entries_map_.LookupOrInsert(
401 base::HashMap::Entry* entry = entries_map_.LookupOrInsert(
554 entries_.LookupOrInsert(thing, Hash(thing));
576 entries_.LookupOrInsert(object, HeapEntriesMap::Hash(object));
594 entries_.LookupOrInsert(object, HeapEntriesMap::Hash(object));
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
lookup_table_op.h 238 const V& previous_value = gtl::LookupOrInsert(table_.get(), key, value);
barrier_ops.cc 328 &gtl::LookupOrInsert(&incomplete_, keys_vec(i), PersistentTuple());
  /external/v8/src/ast/
ast-value-factory.cc 287 base::HashMap::Entry* entry = string_table_.LookupOrInsert(&key, key.Hash());
scopes.cc 59 ZoneHashMap::LookupOrInsert(const_cast<AstRawString*>(name), name->Hash(),
74 ZoneHashMap::LookupOrInsert(const_cast<AstRawString*>(name), name->Hash(),
93 ZoneHashMap::LookupOrInsert(const_cast<AstRawString*>(name), name->Hash(),
126 ZoneHashMap::LookupOrInsert(const_cast<AstRawString*>(name), name->Hash(),
    [all...]
ast.cc 370 ZoneHashMap::Entry* entry = table.LookupOrInsert(literal, hash, allocator);
    [all...]
  /external/v8/src/debug/
debug-coverage.cc 26 Entry* entry = LookupOrInsert(key, Hash(key), []() { return 0; });
  /external/v8/src/libsampler/
sampler.cc 250 sampler_map_.LookupOrInsert(ThreadKey(thread_id),

Completed in 962 milliseconds

1 2