Home
last modified time | relevance | path

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

/arkcompiler/runtime_core/libpandafile/
Dfile.h68 uint32_t class_idx_off; member
81 uint32_t class_idx_off; member
190 … Span class_idx_data = file.SubSpan(header->class_idx_off, header->num_classes * sizeof(uint32_t)); in GetClasses()
232 … THROW_IF(index_header->class_idx_off > header->file_size || class_idx_size > header->file_size || in GetClassIndex()
233 … index_header->class_idx_off > header->file_size - class_idx_size, "index_header is invalid"); in GetClassIndex()
234 …auto sp = file.SubSpan(index_header->class_idx_off, index_header->class_idx_size * EntityId::GetSi… in GetClassIndex()
Dfile.cpp583 if (!CheckHeaderElementOffset(header->class_idx_off, header->num_classes, header->file_size)) { in CheckHeader()
584 LOG(ERROR, PANDAFILE) << "Invalid panda file class_idx_off " << header->class_idx_off << in CheckHeader()
/arkcompiler/ets_runtime/ecmascript/jspandafile/tests/
Djs_pandafile_test.cpp252 …Span classIdxData = fileData.SubSpan(header->class_idx_off, header->num_classes * sizeof(uint32_t)… in HWTEST_F_L0()
/arkcompiler/runtime_core/libpandafile/tests/
Dfile_item_container_test.cpp305 EXPECT_EQ(panda_file->GetHeader()->class_idx_off, sizeof(File::Header));
308 …reinterpret_cast<const uint32_t *>(panda_file->GetBase() + panda_file->GetHeader()->class_idx_off);
/arkcompiler/runtime_core/docs/
Dfile_format.md215 | `class_idx_off` | `uint32_t` | Offset to the class index structure. The offset must p…
238 | `class_idx_off` | `uint32_t` | Offset to the class index structure. The offset must point to a …
/arkcompiler/runtime_core/disassembler/
Ddisassembler.cpp370 auto class_off = file_->GetHeader()->class_idx_off + sizeof(uint32_t) * i; in GetRecords()