Home
last modified time | relevance | path

Searched refs:SimpleNumberDictionary (Results 1 – 14 of 14) sorted by relevance

/third_party/node/deps/v8/src/objects/
Djs-weak-refs-inl.h31 Handle<SimpleNumberDictionary> key_map; in TQ_OBJECT_CONSTRUCTORS_IMPL()
33 key_map = SimpleNumberDictionary::New(isolate, 1); in TQ_OBJECT_CONSTRUCTORS_IMPL()
36 handle(SimpleNumberDictionary::cast(finalization_registry->key_map()), in TQ_OBJECT_CONSTRUCTORS_IMPL()
51 key_map = SimpleNumberDictionary::Set(isolate, key_map, key, weak_cell); in TQ_OBJECT_CONSTRUCTORS_IMPL()
79 SimpleNumberDictionary key_map = in RemoveUnregisterToken()
80 SimpleNumberDictionary::cast(this->key_map()); in RemoveUnregisterToken()
Ddictionary.h291 EXTERN_DECLARE_DICTIONARY(SimpleNumberDictionary, SimpleNumberDictionaryShape) in EXTERN_DECLARE_DICTIONARY() argument
294 class SimpleNumberDictionary in EXTERN_DECLARE_DICTIONARY()
295 : public Dictionary<SimpleNumberDictionary, SimpleNumberDictionaryShape> { in EXTERN_DECLARE_DICTIONARY()
299 DECL_CAST(SimpleNumberDictionary) in EXTERN_DECLARE_DICTIONARY()
301 V8_EXPORT_PRIVATE V8_WARN_UNUSED_RESULT static Handle<SimpleNumberDictionary> in EXTERN_DECLARE_DICTIONARY()
302 Set(Isolate* isolate, Handle<SimpleNumberDictionary> dictionary, uint32_t key, in EXTERN_DECLARE_DICTIONARY()
308 SimpleNumberDictionary, in EXTERN_DECLARE_DICTIONARY()
309 Dictionary<SimpleNumberDictionary, SimpleNumberDictionaryShape>); in EXTERN_DECLARE_DICTIONARY()
Ddictionary-inl.h26 CAST_ACCESSOR(SimpleNumberDictionary) in CAST_ACCESSOR()
124 SimpleNumberDictionary::SimpleNumberDictionary(Address ptr) in SimpleNumberDictionary() function
125 : Dictionary<SimpleNumberDictionary, SimpleNumberDictionaryShape>(ptr) { in SimpleNumberDictionary()
291 Handle<Map> SimpleNumberDictionary::GetMap(ReadOnlyRoots roots) { in GetMap()
Dfeedback-vector.cc1332 Handle<SimpleNumberDictionary> types; in Collect()
1335 types = SimpleNumberDictionary::New(isolate, 1); in Collect()
1338 SimpleNumberDictionary::cast(feedback->GetHeapObjectAssumeStrong()), in Collect()
1347 types = SimpleNumberDictionary::Set( in Collect()
1355 types = SimpleNumberDictionary::Set( in Collect()
1374 Handle<SimpleNumberDictionary> types( in GetSourcePositions()
1375 SimpleNumberDictionary::cast(feedback->GetHeapObjectAssumeStrong()), in GetSourcePositions()
1378 for (int index = SimpleNumberDictionary::kElementsStartIndex; in GetSourcePositions()
1379 index < types->length(); index += SimpleNumberDictionary::kEntrySize) { in GetSourcePositions()
1380 int key_index = index + SimpleNumberDictionary::kEntryKeyIndex; in GetSourcePositions()
[all …]
Dvalue-serializer.h334 MaybeHandle<SimpleNumberDictionary> array_buffer_transfer_map_;
Dobject-list-macros.h216 V(SimpleNumberDictionary) \
Dvalue-serializer.cc1377 *SimpleNumberDictionary::New(isolate_, 0)); in TransferArrayBuffer()
1379 Handle<SimpleNumberDictionary> dictionary = in TransferArrayBuffer()
1381 Handle<SimpleNumberDictionary> new_dictionary = SimpleNumberDictionary::Set( in TransferArrayBuffer()
1981 Handle<SimpleNumberDictionary> transfer_map; in ReadTransferredJSArrayBuffer()
Dcontexts.h280 V(SLOW_TEMPLATE_INSTANTIATIONS_CACHE_INDEX, SimpleNumberDictionary, \
Dobjects.cc2411 SimpleNumberDictionary::cast(*this).Rehash(isolate); in RehashBasedOnMap()
6158 Handle<SimpleNumberDictionary> SimpleNumberDictionary::Set( in Set()
6159 Isolate* isolate, Handle<SimpleNumberDictionary> dictionary, uint32_t key, in Set()
6935 EXTERN_DEFINE_DICTIONARY(SimpleNumberDictionary, SimpleNumberDictionaryShape) in EXTERN_DEFINE_HASH_TABLE()
6961 SimpleNumberDictionary key_map = in EXTERN_DEFINE_HASH_TABLE()
6962 SimpleNumberDictionary::cast(finalization_registry.key_map()); in EXTERN_DEFINE_HASH_TABLE()
/third_party/node/deps/v8/src/runtime/
Druntime-weak-refs.cc19 Handle<SimpleNumberDictionary> key_map = in RUNTIME_FUNCTION()
20 handle(SimpleNumberDictionary::cast(finalization_registry->key_map()), in RUNTIME_FUNCTION()
22 key_map = SimpleNumberDictionary::Shrink(isolate, key_map); in RUNTIME_FUNCTION()
/third_party/node/deps/v8/src/api/
Dapi-natives.cc306 SimpleNumberDictionary slow_cache = in ProbeInstantiationsCache()
340 Handle<SimpleNumberDictionary> cache = in CacheTemplateInstantiation()
343 SimpleNumberDictionary::Set(isolate, cache, serial_number, object); in CacheTemplateInstantiation()
370 Handle<SimpleNumberDictionary> cache = in UncacheTemplateInstantiation()
374 cache = SimpleNumberDictionary::DeleteEntry(isolate, cache, entry); in UncacheTemplateInstantiation()
/third_party/node/deps/v8/src/common/
Dglobals.h759 class SimpleNumberDictionary; variable
/third_party/node/deps/v8/src/builtins/
Dbase.tq220 extern class SimpleNumberDictionary extends HashTable;
/third_party/node/deps/v8/src/init/
Dbootstrapper.cc5511 auto slow_template_instantiations_cache = SimpleNumberDictionary::New( in InstallABunchOfRandomThings()