Home
last modified time | relevance | path

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

/art/runtime/entrypoints/
Dentrypoint_utils.h141 size_t expected_size)
/art/libdexfile/dex/
Ddex_file_verifier.cc2312 uint32_t expected_size; in CheckIntraIdSection() local
2318 expected_size = header_->string_ids_size_; in CheckIntraIdSection()
2322 expected_size = header_->type_ids_size_; in CheckIntraIdSection()
2326 expected_size = header_->proto_ids_size_; in CheckIntraIdSection()
2330 expected_size = header_->field_ids_size_; in CheckIntraIdSection()
2334 expected_size = header_->method_ids_size_; in CheckIntraIdSection()
2338 expected_size = header_->class_defs_size_; in CheckIntraIdSection()
2350 if (UNLIKELY(count != expected_size)) { in CheckIntraIdSection()
2351 ErrorStringPrintf("Bad size for section: got %x, expected %x", count, expected_size); in CheckIntraIdSection()
Ddex_file_verifier_test.cc51 uint32_t expected_size = header->file_size_; in FixUpChecksum() local
55 adler_checksum = adler32(adler_checksum, non_sum_ptr, expected_size - non_sum); in FixUpChecksum()
/art/runtime/
Dclass_loader_context_test.cc69 void VerifyContextSize(ClassLoaderContext* context, size_t expected_size) { in VerifyContextSize() argument
71 ASSERT_EQ(expected_size, context->GetParentChainSize()); in VerifyContextSize()
124 size_t expected_size) { in VerifySharedLibrariesSize() argument
128 ASSERT_EQ(info.shared_libraries.size(), expected_size); in VerifySharedLibrariesSize()
Dclass_linker_test.cc492 size_t expected_size = RoundUp(klass->GetObjectSize(), kPackAlignment); in Check() local
493 if (sizeof(T) != expected_size) { in Check()
496 << " Java=" << expected_size in Check()
/art/runtime/gc/space/
Dimage_space.cc3194 size_t expected_size = image_reservation->IsValid() ? image_reservation->Size() : 0u; in RemapExtraReservation() local
3195 if (extra_reservation_size != expected_size) { in RemapExtraReservation()
3198 expected_size); in RemapExtraReservation()