Searched refs:entry_storage (Results 1 – 2 of 2) sorted by relevance
/third_party/node/deps/v8/src/objects/ |
D | objects-inl.h | 1234 Handle<FixedArray> entry_storage = isolate->factory()->NewFixedArray(2); in MakeEntryPair() local 1236 entry_storage->set(0, *key, SKIP_WRITE_BARRIER); in MakeEntryPair() 1237 entry_storage->set(1, *value, SKIP_WRITE_BARRIER); in MakeEntryPair() 1239 return isolate->factory()->NewJSArrayWithElements(entry_storage, in MakeEntryPair() 1245 Handle<FixedArray> entry_storage = isolate->factory()->NewFixedArray(2); in MakeEntryPair() local 1247 entry_storage->set(0, *key, SKIP_WRITE_BARRIER); in MakeEntryPair() 1248 entry_storage->set(1, *value, SKIP_WRITE_BARRIER); in MakeEntryPair() 1250 return isolate->factory()->NewJSArrayWithElements(entry_storage, in MakeEntryPair()
|
D | js-objects.cc | 2228 Handle<FixedArray> entry_storage = isolate->factory()->NewFixedArray(2); in GetOwnValuesOrEntries() local 2229 entry_storage->set(0, *key); in GetOwnValuesOrEntries() 2230 entry_storage->set(1, *value); in GetOwnValuesOrEntries() 2231 value = isolate->factory()->NewJSArrayWithElements(entry_storage, in GetOwnValuesOrEntries()
|