Home
last modified time | relevance | path

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

/external/v8/src/runtime/
Druntime-collections.cc265 Handle<ObjectHashTable> table( in RUNTIME_FUNCTION()
266 ObjectHashTable::cast(weak_collection->table())); in RUNTIME_FUNCTION()
281 Handle<ObjectHashTable> table( in RUNTIME_FUNCTION()
282 ObjectHashTable::cast(weak_collection->table())); in RUNTIME_FUNCTION()
296 Handle<ObjectHashTable> table( in RUNTIME_FUNCTION()
297 ObjectHashTable::cast(weak_collection->table())); in RUNTIME_FUNCTION()
312 Handle<ObjectHashTable> table( in RUNTIME_FUNCTION()
313 ObjectHashTable::cast(weak_collection->table())); in RUNTIME_FUNCTION()
/external/v8/src/heap/
Dobject-stats.cc422 ObjectHashTable* table = ObjectHashTable::cast(obj->table()); in RecordJSWeakCollectionDetails()
423 int used = table->NumberOfElements() * ObjectHashTable::kEntrySize; in RecordJSWeakCollectionDetails()
Dmark-compact.cc2758 ObjectHashTable* table = ObjectHashTable::cast(weak_collection->table()); in ProcessWeakCollections()
2762 table->RawFieldOfElementAt(ObjectHashTable::EntryToIndex(i)); in ProcessWeakCollections()
2765 table->RawFieldOfElementAt(ObjectHashTable::EntryToValueIndex(i)); in ProcessWeakCollections()
2784 ObjectHashTable* table = ObjectHashTable::cast(weak_collection->table()); in ClearWeakCollections()
/external/v8/src/
Dobjects.cc16556 template class HashTable<ObjectHashTable,
18168 Object* ObjectHashTable::Lookup(Isolate* isolate, Handle<Object> key, in Lookup()
18179 Object* ObjectHashTable::Lookup(Handle<Object> key) { in Lookup()
18193 Object* ObjectHashTable::ValueAt(int entry) { in ValueAt()
18197 Object* ObjectHashTable::Lookup(Handle<Object> key, int32_t hash) { in Lookup()
18202 Handle<ObjectHashTable> ObjectHashTable::Put(Handle<ObjectHashTable> table, in Put()
18216 Handle<ObjectHashTable> ObjectHashTable::Put(Handle<ObjectHashTable> table, in Put()
18241 int capacity = ObjectHashTable::ComputeCapacity(nof * 2); in Put()
18242 if (capacity > ObjectHashTable::kMaxCapacity) { in Put()
18259 Handle<ObjectHashTable> ObjectHashTable::Remove(Handle<ObjectHashTable> table, in Remove()
[all …]
Dobjects.h941 class ObjectHashTable; variable
1087 V(ObjectHashTable) \
3424 friend class ObjectHashTable;
3950 class ObjectHashTable: public HashTable<ObjectHashTable,
3954 ObjectHashTable, ObjectHashTableShape, Handle<Object> > DerivedHashTable;
3956 DECLARE_CAST(ObjectHashTable)
3959 MUST_USE_RESULT static inline Handle<ObjectHashTable> Shrink(
3960 Handle<ObjectHashTable> table,
3973 static Handle<ObjectHashTable> Put(Handle<ObjectHashTable> table,
3976 static Handle<ObjectHashTable> Put(Handle<ObjectHashTable> table,
[all …]
Dapi.cc2991 i::Handle<i::ObjectHashTable> table( in Set()
2992 i::ObjectHashTable::cast(weak_collection->table())); in Set()
3011 i::Handle<i::ObjectHashTable> table( in Get()
3012 i::ObjectHashTable::cast(weak_collection->table())); in Get()
3034 i::Handle<i::ObjectHashTable> table( in Has()
3035 i::ObjectHashTable::cast(weak_collection->table())); in Has()
3055 i::Handle<i::ObjectHashTable> table( in Delete()
3056 i::ObjectHashTable::cast(weak_collection->table())); in Delete()
Dobjects-inl.h675 CAST_ACCESSOR(ObjectHashTable) in CAST_ACCESSOR()
5625 ACCESSORS(Module, exports, ObjectHashTable, kExportsOffset) in ACCESSORS()
7884 Handle<ObjectHashTable> ObjectHashTable::Shrink( in Shrink()
7885 Handle<ObjectHashTable> table, Handle<Object> key) { in Shrink()
Dfactory.cc1923 Handle<ObjectHashTable> exports = in NewModule()
1924 ObjectHashTable::New(isolate(), module_info->RegularExportCount()); in NewModule()
/external/v8/src/profiler/
Dheap-snapshot-generator.cc1196 ObjectHashTable* table = ObjectHashTable::cast(obj->table()); in ExtractJSWeakCollectionReferences()