Searched defs:entry_index (Results 1 - 9 of 9) sorted by relevance

/external/python/cpython3/Modules/
H A Dhashtable.c441 size_t entry_index; local
446 entry_index = entry->key_hash & (new_size - 1);
448 _Py_slist_prepend(&ht->buckets[entry_index], (_Py_slist_item_t*)entry);
/external/eigen/bench/
H A Danalyze-blocking-sizes.cpp278 for (size_t entry_index = 0; entry_index < num_entries; entry_index++) {
279 const uint16_t entry_product_size = first_file.entries[entry_index].product_size;
280 const uint16_t entry_block_size = first_file.entries[entry_index].block_size;
283 if (cur_file.entries[entry_index].product_size != entry_product_size ||
284 cur_file.entries[entry_index].block_size != entry_block_size)
307 size_t entry_index = 0; local
310 while (entry_index < num_entries) {
311 ++entry_index;
340 size_t entry_index = 0; local
[all...]
/external/v8/src/profiler/
H A Dheap-snapshot-generator.h598 int entry_index(HeapEntry* e) { return e->index() * kNodeFieldsCount; } function in class:v8::internal::HeapSnapshotJSONSerializer
H A Dheap-snapshot-generator.cc429 int entry_index = static_cast<int>(reinterpret_cast<intptr_t>(entry->value)); local
430 EntryInfo& entry_info = entries_.at(entry_index);
443 int entry_index = local
445 EntryInfo& entry_info = entries_.at(entry_index);
552 int entry_index = static_cast<int>( local
554 EntryInfo& entry_info = entries_.at(entry_index);
2805 buffer_pos = utoa(entry_index(edge->to()), buffer, buffer_pos);
2831 if (entry_index(entry) != 0) {
/external/vboot_reference/cgpt/
H A Dcgpt_common.c705 GptEntry *GetEntry(GptData *gpt, int secondary, uint32_t entry_index) { argument
710 require(entry_index < header->number_of_entries);
726 return (GptEntry*)(&entries[stride * entry_index]);
729 void SetPriority(struct drive *drive, int secondary, uint32_t entry_index, argument
733 entry = GetEntry(&drive->gpt, secondary, entry_index);
737 int GetPriority(struct drive *drive, int secondary, uint32_t entry_index) { argument
739 entry = GetEntry(&drive->gpt, secondary, entry_index);
743 void SetTries(struct drive *drive, int secondary, uint32_t entry_index, argument
747 entry = GetEntry(&drive->gpt, secondary, entry_index);
751 int GetTries(struct drive *drive, int secondary, uint32_t entry_index) { argument
757 SetSuccessful(struct drive *drive, int secondary, uint32_t entry_index, int success) argument
765 GetSuccessful(struct drive *drive, int secondary, uint32_t entry_index) argument
771 SetRaw(struct drive *drive, int secondary, uint32_t entry_index, uint32_t raw) argument
[all...]
/external/v8/src/wasm/
H A Dwasm-interpreter.cc872 InterpreterCode* GetIndirectCode(uint32_t table_index, uint32_t entry_index) { argument
876 if (entry_index >= table->values.size()) return nullptr;
877 uint32_t index = table->values[entry_index];
1410 uint32_t entry_index = Pop().to<uint32_t>(); local
1413 InterpreterCode* target = codemap()->GetIndirectCode(0, entry_index);
/external/iproute2/devlink/
H A Ddevlink.c3645 uint32_t entry_index; local
3659 entry_index = mnl_attr_get_u32(nla_entry[DEVLINK_ATTR_DPIPE_ENTRY_INDEX]);
3660 pr_out_uint(ctx->dl, "index", entry_index);
/external/llvm/tools/llvm-readobj/
H A DELFDumper.cpp654 size_t entry_index = (reinterpret_cast<uintptr_t>(symb) - local
660 Obj->template getEntry<Elf_Versym>(dot_gnu_version_sec, entry_index);
/external/v8/src/
H A Dobjects.cc17650 int entry_index = EntryToIndex(entry); local
17651 int value_index = entry_index + 1;
17653 if (get(entry_index)->IsNumber()) {
17657 NoWriteBarrierSet(this, entry_index, the_hole_value);
17663 } else if (get(entry_index)->IsFixedArray()) {
17671 NoWriteBarrierSet(this, entry_index + i, the_hole_value);
17684 int entry_index = EntryToIndex(entry); local
17685 int value_index = entry_index + 1;
17688 NoWriteBarrierSet(this, entry_index + i, the_hole_value);

Completed in 419 milliseconds