HomeSort by relevance Sort by last modified time
    Searched refs:entry_index (Results 1 - 17 of 17) sorted by null

  /external/vboot_reference/cgpt/
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,
cgpt_common.c 705 GptEntry *GetEntry(GptData *gpt, int secondary, uint32_t entry_index) {
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,
733 entry = GetEntry(&drive->gpt, secondary, entry_index);
737 int GetPriority(struct drive *drive, int secondary, uint32_t entry_index) {
739 entry = GetEntry(&drive->gpt, secondary, entry_index);
743 void SetTries(struct drive *drive, int secondary, uint32_t entry_index,
747 entry = GetEntry(&drive->gpt, secondary, entry_index);
751 int GetTries(struct drive *drive, int secondary, uint32_t entry_index) {
    [all...]
  /frameworks/base/libs/androidfw/include/androidfw/
LoadedArsc.h 64 inline uint32_t GetFlagsForEntryIndex(uint16_t entry_index) const {
65 if (entry_index >= dtohl(type_spec->entryCount)) {
70 return flags[entry_index];
94 static const ResTable_entry* GetEntry(const ResTable_type* type_chunk, uint16_t entry_index);
96 static uint32_t GetEntryOffset(const ResTable_type* type_chunk, uint16_t entry_index);
  /external/eigen/bench/
analyze-blocking-sizes.cpp 278 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...]
  /frameworks/base/libs/androidfw/tests/
LoadedArsc_test.cpp 58 const uint16_t entry_index = get_entry_id(app::R::string::string_one); local
66 ASSERT_THAT(LoadedPackage::GetEntry(type, entry_index), NotNull());
82 const uint16_t entry_index = get_entry_id(sparse::R::integer::foo_9); local
90 ASSERT_THAT(LoadedPackage::GetEntry(type, entry_index), NotNull());
166 uint8_t entry_index = get_entry_id(basic::R::string::test3); local
179 ASSERT_THAT(LoadedPackage::GetEntry(type_spec->types[0], entry_index), NotNull());
  /bionic/libc/malloc_debug/
RecordData.cpp 202 unsigned int entry_index = cur_index_.fetch_add(1); local
203 if (entry_index < num_entries_) {
204 entries_[entry_index] = entry;
  /frameworks/base/libs/androidfw/
LoadedArsc.cpp 207 uint16_t entry_index) {
208 uint32_t entry_offset = GetEntryOffset(type_chunk, entry_index);
215 uint32_t LoadedPackage::GetEntryOffset(const ResTable_type* type_chunk, uint16_t entry_index) {
230 std::lower_bound(sparse_indices, sparse_indices_end, entry_index,
235 if (result == sparse_indices_end || dtohs(result->idx) != entry_index) {
246 if (entry_index >= entry_count) {
253 return dtohl(entry_offsets[entry_index]);
  /external/python/cpython3/Modules/
hashtable.c 441 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/v8/src/profiler/
heap-snapshot-generator.cc 429 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);
    [all...]
heap-snapshot-generator.h 598 int entry_index(HeapEntry* e) { return e->index() * kNodeFieldsCount; } function in class:v8::internal::HeapSnapshotJSONSerializer
  /external/v8/src/wasm/
wasm-interpreter.cc 872 InterpreterCode* GetIndirectCode(uint32_t table_index, uint32_t entry_index) {
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
    [all...]
  /external/oj-libjdwp/src/share/javavm/export/
jvm.h 782 * Returns the exception table entry at entry_index of a given method.
789 jint entry_index,
    [all...]
  /libcore/ojluni/src/main/native/
jvm.h 759 * Returns the exception table entry at entry_index of a given method.
766 jint entry_index,
    [all...]
  /external/iproute2/devlink/
devlink.c 3645 uint32_t entry_index; local
    [all...]
  /external/llvm/tools/llvm-readobj/
ELFDumper.cpp 654 size_t entry_index = (reinterpret_cast<uintptr_t>(symb) - local
660 Obj->template getEntry<Elf_Versym>(dot_gnu_version_sec, entry_index);
    [all...]
  /external/v8/src/
objects.cc 17650 int entry_index = EntryToIndex(entry); local
17684 int entry_index = EntryToIndex(entry); local
    [all...]
code-stub-assembler.cc     [all...]

Completed in 1147 milliseconds