Home
last modified time | relevance | path

Searched refs:entry_index (Results 1 – 6 of 6) sorted by relevance

/external/vboot_reference/cgpt/
Dcgpt.h150 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,
Dcgpt_common.c705 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/
Dheap-snapshot-generator.cc436 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()
Dheap-snapshot-generator.h595 int entry_index(HeapEntry* e) { return e->index() * kNodeFieldsCount; } in entry_index() function
/external/llvm/tools/llvm-readobj/
DELFDumper.cpp409 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/
Dobjects.cc18018 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()