/third_party/jerryscript/jerry-core/ecma/base/ |
H A D | ecma-property-hashmap.c | 158 uint32_t entry_index = ecma_string_get_property_name_hash (prop_iter_p->types[i], in ecma_property_hashmap_create() local 160 uint32_t step = ecma_property_hashmap_steps[entry_index & (ECMA_PROPERTY_HASHMAP_NUMBER_OF_STEPS - 1)]; in ecma_property_hashmap_create() 162 entry_index &= mask; in ecma_property_hashmap_create() 170 uint32_t start_entry_index = entry_index; in ecma_property_hashmap_create() 173 while (pair_list_p[entry_index] != ECMA_NULL_POINTER) in ecma_property_hashmap_create() 175 entry_index = (entry_index + step) & mask; in ecma_property_hashmap_create() 178 JERRY_ASSERT (entry_index != start_entry_index); in ecma_property_hashmap_create() 182 ECMA_SET_NON_NULL_POINTER (pair_list_p[entry_index], property_pair_p); in ecma_property_hashmap_create() 186 ECMA_PROPERTY_HASHMAP_SET_BIT (bits_p, entry_index); in ecma_property_hashmap_create() 243 uint32_t entry_index = ecma_string_hash (name_p); ecma_property_hashmap_insert() local 315 uint32_t entry_index = ecma_string_get_property_name_hash (*property_p, name_cp); ecma_property_hashmap_delete() local 410 uint32_t entry_index = ecma_string_hash (name_p); ecma_property_hashmap_find() local [all...] |
/third_party/node/deps/v8/src/objects/ |
H A D | embedder-data-slot-inl.h | 23 EmbedderDataSlot::EmbedderDataSlot(EmbedderDataArray array, int entry_index) in EmbedderDataSlot() argument 25 EmbedderDataArray::OffsetOfElementAt(entry_index))) {} in EmbedderDataSlot() 58 void EmbedderDataSlot::store_tagged(EmbedderDataArray array, int entry_index, in store_tagged() argument 60 int slot_offset = EmbedderDataArray::OffsetOfElementAt(entry_index); in store_tagged() 177 Map map, JSObject js_object, int entry_index, in PopulateEmbedderDataSnapshot() 187 FIELD_ADDR(js_object, js_object.GetEmbedderFieldOffset(entry_index)); in PopulateEmbedderDataSnapshot() 176 PopulateEmbedderDataSnapshot( Map map, JSObject js_object, int entry_index, EmbedderDataSlotSnapshot& snapshot) PopulateEmbedderDataSnapshot() argument
|
H A D | compilation-cache-table.cc | 369 const int entry_index = EntryToIndex(entry); in Age() local 370 const int value_index = entry_index + 1; in Age() 372 Object key = get(entry_index); in Age() 384 RemoveEntry(entry_index); in Age() 393 RemoveEntry(entry_index); in Age() 402 int entry_index = EntryToIndex(entry); in Remove() local 403 int value_index = entry_index + 1; in Remove() 405 RemoveEntry(entry_index); in Remove() 410 void CompilationCacheTable::RemoveEntry(int entry_index) { in RemoveEntry() argument 413 NoWriteBarrierSet(*this, entry_index in RemoveEntry() [all...] |
H A D | embedder-data-slot.h | 95 int entry_index, 99 V8_INLINE EmbedderDataSlot(EmbedderDataArray array, int entry_index); 114 static V8_INLINE void store_tagged(EmbedderDataArray array, int entry_index,
|
H A D | compilation-cache-table.h | 132 void RemoveEntry(int entry_index);
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-ot-name-table.hh | 39 #define entry_index var.u16[1] macro 191 if (a->entry_index != b->entry_index) in _hb_ot_name_entry_cmp() 192 return a->entry_index - b->entry_index; in _hb_ot_name_entry_cmp() 301 entry->entry_index = i; in init() 343 return entry->entry_index; in get_index() 373 #undef entry_index macro
|
/third_party/node/deps/v8/src/profiler/ |
H A D | heap-snapshot-generator-inl.h | 66 int HeapSnapshotJSONSerializer::to_node_index(int entry_index) { in to_node_index() argument 67 return entry_index * kNodeFieldsCount; in to_node_index()
|
H A D | heap-snapshot-generator.h | 49 SourceLocation(int entry_index, int scriptId, int line, int col) in SourceLocation() 50 : entry_index(entry_index), scriptId(scriptId), line(line), col(col) {} in SourceLocation() 52 const int entry_index; member 674 V8_INLINE int to_node_index(int entry_index);
|
H A D | heap-snapshot-generator.cc | 568 int entry_index = static_cast<int>(reinterpret_cast<intptr_t>(entry->value)); in FindEntry() local 569 EntryInfo& entry_info = entries_.at(entry_index); in FindEntry() 582 int entry_index = in FindOrAddEntry() local 584 EntryInfo& entry_info = entries_.at(entry_index); in FindOrAddEntry() 3170 buffer_pos = utoa(to_node_index(location.entry_index), buffer, buffer_pos); in SerializeLocation()
|
/third_party/node/deps/v8/src/wasm/ |
H A D | module-instantiate.cc | 1938 uint32_t entry_index, in SetFunctionTablePlaceholder() 1949 isolate, table_object, entry_index, instance, func_index); in SetFunctionTablePlaceholder() 1951 table_object->entries().set(entry_index, in SetFunctionTablePlaceholder() 1954 WasmTableObject::UpdateDispatchTables(isolate, *table_object, entry_index, in SetFunctionTablePlaceholder() 1960 uint32_t entry_index) { in SetFunctionTableNullEntry() 1961 table_object->entries().set(entry_index, *isolate->factory()->null_value()); in SetFunctionTableNullEntry() 1962 WasmTableObject::ClearDispatchTables(isolate, table_object, entry_index); in SetFunctionTableNullEntry() 1977 for (uint32_t entry_index = 0; entry_index < table.initial_size; in InitializeNonDefaultableTables() 1978 entry_index in InitializeNonDefaultableTables() 1935 SetFunctionTablePlaceholder(Isolate* isolate, Handle<WasmInstanceObject> instance, Handle<WasmTableObject> table_object, uint32_t entry_index, uint32_t func_index) SetFunctionTablePlaceholder() argument 1958 SetFunctionTableNullEntry(Isolate* isolate, Handle<WasmTableObject> table_object, uint32_t entry_index) SetFunctionTableNullEntry() argument 2030 int entry_index = static_cast<int>(dst + i); LoadElemSegmentImpl() local [all...] |
H A D | wasm-objects.cc | 319 uint32_t entry_index) { in IsInBounds() 320 return entry_index < static_cast<uint32_t>(table->current_length()); in IsInBounds() 342 int entry_index, in SetFunctionTableEntry() 345 ClearDispatchTables(isolate, table, entry_index); // Degenerate case. in SetFunctionTableEntry() 346 entries->set(entry_index, ReadOnlyRoots(isolate).null_value()); in SetFunctionTableEntry() 359 UpdateDispatchTables(isolate, *table, entry_index, wasm_function, in SetFunctionTableEntry() 362 UpdateDispatchTables(isolate, table, entry_index, in SetFunctionTableEntry() 366 UpdateDispatchTables(isolate, table, entry_index, in SetFunctionTableEntry() 369 entries->set(entry_index, *entry); in SetFunctionTableEntry() 380 int entry_index in Set() local 317 IsInBounds(Isolate* isolate, Handle<WasmTableObject> table, uint32_t entry_index) IsInBounds() argument 339 SetFunctionTableEntry(Isolate* isolate, Handle<WasmTableObject> table, Handle<FixedArray> entries, int entry_index, Handle<Object> entry) SetFunctionTableEntry() argument 416 int entry_index = static_cast<int>(index); Get() local 477 UpdateDispatchTables(Isolate* isolate, WasmTableObject table, int entry_index, const wasm::WasmFunction* func, WasmInstanceObject target_instance) UpdateDispatchTables() argument 527 UpdateDispatchTables(Isolate* isolate, Handle<WasmTableObject> table, int entry_index, Handle<WasmJSFunction> function) UpdateDispatchTables() argument 549 UpdateDispatchTables( Isolate* isolate, Handle<WasmTableObject> table, int entry_index, Handle<WasmCapiFunction> capi_function) UpdateDispatchTables() argument 634 SetFunctionTablePlaceholder( Isolate* isolate, Handle<WasmTableObject> table, int entry_index, Handle<WasmInstanceObject> instance, int func_index) SetFunctionTablePlaceholder() argument 648 GetFunctionTableEntry( Isolate* isolate, const WasmModule* module, Handle<WasmTableObject> table, int entry_index, bool* is_valid, bool* is_null, MaybeHandle<WasmInstanceObject>* instance, int* function_index, MaybeHandle<WasmJSFunction>* maybe_js_function) GetFunctionTableEntry() argument 1446 ImportWasmJSFunctionIntoTable( Isolate* isolate, Handle<WasmInstanceObject> instance, int table_index, int entry_index, Handle<WasmJSFunction> js_function) ImportWasmJSFunctionIntoTable() argument [all...] |
H A D | wasm-objects.h | 187 uint32_t entry_index); 207 int entry_index, 212 int entry_index, 216 int entry_index, 223 Isolate* isolate, Handle<WasmTableObject> table, int entry_index, 231 Handle<WasmTableObject> table, int entry_index, bool* is_valid, 239 Handle<FixedArray> entries, int entry_index, 509 int table_index, int entry_index,
|
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-wasm.cc | 416 uint32_t entry_index = args.positive_smi_value_at(2); in RUNTIME_FUNCTION() local 427 if (!WasmTableObject::IsInBounds(isolate, table, entry_index)) { in RUNTIME_FUNCTION() 431 return *WasmTableObject::Get(isolate, table, entry_index); in RUNTIME_FUNCTION() 440 uint32_t entry_index = args.positive_smi_value_at(2); in RUNTIME_FUNCTION() local 454 if (!WasmTableObject::IsInBounds(isolate, table, entry_index)) { in RUNTIME_FUNCTION() 457 WasmTableObject::Set(isolate, table, entry_index, element); in RUNTIME_FUNCTION()
|
/third_party/python/Python/ |
H A D | hashtable.c | 300 size_t entry_index = entry->key_hash & (new_size - 1); in hashtable_rehash() local 302 _Py_slist_prepend(&new_buckets[entry_index], (_Py_slist_item_t*)entry); in hashtable_rehash()
|
/third_party/node/deps/v8/src/codegen/ |
H A D | code-stub-assembler.cc | 7323 TNode<IntPtrT> entry_index = 7328 UnsafeLoadFixedArrayElement(number_string_cache, entry_index); 7342 result = CAST(UnsafeLoadFixedArrayElement(number_string_cache, entry_index, 7352 TNode<IntPtrT> entry_index = 7355 UnsafeLoadFixedArrayElement(number_string_cache, entry_index); 7360 result = CAST(UnsafeLoadFixedArrayElement(number_string_cache, entry_index, 7382 StoreFixedArrayElement(number_string_cache, entry_index, 7385 IntPtrAdd(entry_index, IntPtrConstant(1)), 8220 TNode<IntPtrT> entry_index = 8222 return IntPtrAdd(entry_index, IntPtrConstan [all...] |
H A D | code-stub-assembler.h | 3959 TNode<IntPtrT> EntryIndexToIndex(TNode<Uint32T> entry_index); 3963 TNode<IntPtrT> ToKeyIndex(TNode<Uint32T> entry_index); 3967 TNode<Name> GetKey(TNode<Array> array, TNode<Uint32T> entry_index); 4180 TNode<Uint32T> entry_index);
|