Searched refs:entry_index (Results 1 – 6 of 6) sorted by relevance
/external/vboot_reference/cgpt/ |
D | cgpt.h | 150 GptEntry *GetEntry(GptData *gpt, int secondary, uint32_t entry_index); 152 void SetPriority(struct drive *drive, int secondary, uint32_t entry_index, 154 int GetPriority(struct drive *drive, int secondary, uint32_t entry_index); 155 void SetTries(struct drive *drive, int secondary, uint32_t entry_index, 157 int GetTries(struct drive *drive, int secondary, uint32_t entry_index); 158 void SetSuccessful(struct drive *drive, int secondary, uint32_t entry_index, 160 int GetSuccessful(struct drive *drive, int secondary, uint32_t entry_index); 162 void SetRaw(struct drive *drive, int secondary, uint32_t entry_index,
|
D | cgpt_common.c | 705 GptEntry *GetEntry(GptData *gpt, int secondary, uint32_t entry_index) { in GetEntry() argument 710 require(entry_index < header->number_of_entries); in GetEntry() 726 return (GptEntry*)(&entries[stride * entry_index]); in GetEntry() 729 void SetPriority(struct drive *drive, int secondary, uint32_t entry_index, in SetPriority() argument 733 entry = GetEntry(&drive->gpt, secondary, entry_index); in SetPriority() 737 int GetPriority(struct drive *drive, int secondary, uint32_t entry_index) { in GetPriority() argument 739 entry = GetEntry(&drive->gpt, secondary, entry_index); in GetPriority() 743 void SetTries(struct drive *drive, int secondary, uint32_t entry_index, in SetTries() argument 747 entry = GetEntry(&drive->gpt, secondary, entry_index); in SetTries() 751 int GetTries(struct drive *drive, int secondary, uint32_t entry_index) { in GetTries() argument [all …]
|
/external/v8/src/profiler/ |
D | heap-snapshot-generator.cc | 436 int entry_index = static_cast<int>(reinterpret_cast<intptr_t>(entry->value)); in FindEntry() local 437 EntryInfo& entry_info = entries_.at(entry_index); in FindEntry() 450 int entry_index = in FindOrAddEntry() local 452 EntryInfo& entry_info = entries_.at(entry_index); in FindOrAddEntry() 566 int entry_index = static_cast<int>( in FindUntrackedObjects() local 568 EntryInfo& entry_info = entries_.at(entry_index); in FindUntrackedObjects() 2838 buffer_pos = utoa(entry_index(edge->to()), buffer, buffer_pos); in SerializeEdge() 2864 if (entry_index(entry) != 0) { in SerializeNode()
|
D | heap-snapshot-generator.h | 595 int entry_index(HeapEntry* e) { return e->index() * kNodeFieldsCount; } in entry_index() function
|
/external/llvm/tools/llvm-readobj/ |
D | ELFDumper.cpp | 409 size_t entry_index = (reinterpret_cast<uintptr_t>(symb) - in getSymbolVersion() local 415 Obj->template getEntry<Elf_Versym>(dot_gnu_version_sec, entry_index); in getSymbolVersion()
|
/external/v8/src/ |
D | objects.cc | 18018 int entry_index = EntryToIndex(entry); in Age() local 18019 int value_index = entry_index + 1; in Age() 18021 if (get(entry_index)->IsNumber()) { in Age() 18025 NoWriteBarrierSet(this, entry_index, the_hole_value); in Age() 18031 } else if (get(entry_index)->IsFixedArray()) { in Age() 18034 NoWriteBarrierSet(this, entry_index, the_hole_value); in Age() 18047 int entry_index = EntryToIndex(entry); in Remove() local 18048 int value_index = entry_index + 1; in Remove() 18050 NoWriteBarrierSet(this, entry_index, the_hole_value); in Remove()
|