Searched defs:arr (Results 1 - 7 of 7) sorted by relevance

/art/test/005-annotations/src/android/test/anno/
H A DTestAnnotations.java14 static private void printAnnotationArray(String prefix, Annotation[] arr) { argument
18 for (Annotation a : arr) {
/art/runtime/gc/space/
H A Dspace_test.h107 mirror::Array* arr = o->AsArray<kVerifyNone>(); local
110 arr->SetLength(length);
111 EXPECT_EQ(arr->SizeOf<kVerifyNone>(), size);
/art/runtime/native/
H A Ddalvik_system_VMDebug.cc281 jlong* arr = reinterpret_cast<jlong*>(env->GetPrimitiveArrayCritical(data, 0)); local
282 if (arr == nullptr || env->GetArrayLength(data) < 9) {
324 arr[j++] = allocSize;
325 arr[j++] = allocUsed;
326 arr[j++] = allocFree;
327 arr[j++] = zygoteSize;
328 arr[j++] = zygoteUsed;
329 arr[j++] = zygoteFree;
330 arr[j++] = largeObjectsSize;
331 arr[
[all...]
/art/patchoat/
H A Dpatchoat.cc497 mirror::IntArray* arr = object->AsIntArray(); local
498 mirror::IntArray* copy_arr = down_cast<mirror::IntArray*>(RelocatedCopyOf(arr));
499 for (size_t j = 0, count2 = arr->GetLength(); j < count2; ++j) {
501 j, RelocatedAddressOfIntPointer(arr->GetWithoutChecks(j)));
505 mirror::LongArray* arr = object->AsLongArray(); local
506 mirror::LongArray* copy_arr = down_cast<mirror::LongArray*>(RelocatedCopyOf(arr));
507 for (size_t j = 0, count2 = arr->GetLength(); j < count2; ++j) {
509 j, RelocatedAddressOfIntPointer(arr->GetWithoutChecks(j)));
/art/compiler/dex/quick/
H A Dralloc_util.cc1339 void Mir2Lir::DumpCounts(const RefCounts* arr, int size, const char* msg) { argument
1342 if ((arr[i].s_reg & STARTING_WIDE_SREG) != 0) {
1343 LOG(INFO) << "s_reg[64_" << (arr[i].s_reg & ~STARTING_WIDE_SREG) << "]: " << arr[i].count;
1345 LOG(INFO) << "s_reg[32_" << arr[i].s_reg << "]: " << arr[i].count;
/art/compiler/
H A Dimage_writer.cc340 void ImageWriter::AddMethodPointerArray(mirror::PointerArray* arr) { argument
341 DCHECK(arr != nullptr);
343 for (size_t i = 0, len = arr->GetLength(); i < len; i++) {
344 auto* method = arr->GetElementPtrSize<ArtMethod*>(i, target_ptr_size_);
354 pointer_arrays_.emplace(arr, kBinArtMethodClean);
1129 void ImageWriter::FixupPointerArray(mirror::Object* dst, mirror::PointerArray* arr, argument
1132 CHECK(arr->IsIntArray() || arr->IsLongArray()) << PrettyClass(klass) << " " << arr;
1134 const size_t num_elements = arr
[all...]
/art/oatdump/
H A Doatdump.cc1769 auto* arr = down_cast<mirror::PointerArray*>(obj); local
1770 for (int32_t i = 0, length = arr->GetLength(); i < length; i++) {
1771 void* elem = arr->GetElementPtrSize<void*>(i, image_pointer_size);
1774 elem == arr->GetElementPtrSize<void*>(j, image_pointer_size); j++, run++) { }

Completed in 8203 milliseconds