Searched refs:arr (Results 1 – 7 of 7) sorted by relevance
/art/runtime/native/ |
D | dalvik_system_VMDebug.cc | 271 jlong* arr = reinterpret_cast<jlong*>(env->GetPrimitiveArrayCritical(data, 0)); in VMDebug_getHeapSpaceStats() local 272 if (arr == nullptr || env->GetArrayLength(data) < 9) { in VMDebug_getHeapSpaceStats() 314 arr[j++] = allocSize; in VMDebug_getHeapSpaceStats() 315 arr[j++] = allocUsed; in VMDebug_getHeapSpaceStats() 316 arr[j++] = allocFree; in VMDebug_getHeapSpaceStats() 317 arr[j++] = zygoteSize; in VMDebug_getHeapSpaceStats() 318 arr[j++] = zygoteUsed; in VMDebug_getHeapSpaceStats() 319 arr[j++] = zygoteFree; in VMDebug_getHeapSpaceStats() 320 arr[j++] = largeObjectsSize; in VMDebug_getHeapSpaceStats() 321 arr[j++] = largeObjectsUsed; in VMDebug_getHeapSpaceStats() [all …]
|
/art/test/117-nopatchoat/src/ |
D | Main.java | 36 String arr[] = {"This", "is", "a", "function", "call"}; in functionCall() local 38 for (int i = 0; i < arr.length; i++) { in functionCall() 39 ret = ret + arr[i] + " "; in functionCall()
|
/art/test/005-annotations/src/android/test/anno/ |
D | TestAnnotations.java | 14 static private void printAnnotationArray(String prefix, Annotation[] arr) { in printAnnotationArray() argument 18 for (Annotation a : arr) { in printAnnotationArray()
|
/art/compiler/dex/quick/ |
D | ralloc_util.cc | 1194 void Mir2Lir::DumpCounts(const RefCounts* arr, int size, const char* msg) { in DumpCounts() argument 1197 if ((arr[i].s_reg & STARTING_WIDE_SREG) != 0) { in DumpCounts() 1198 LOG(INFO) << "s_reg[64_" << (arr[i].s_reg & ~STARTING_WIDE_SREG) << "]: " << arr[i].count; in DumpCounts() 1200 LOG(INFO) << "s_reg[32_" << arr[i].s_reg << "]: " << arr[i].count; in DumpCounts()
|
D | mir_to_lir.h | 811 void DumpCounts(const RefCounts* arr, int size, const char* msg);
|
/art/runtime/gc/space/ |
D | space_test.h | 101 mirror::Array* arr = o->AsArray<kVerifyNone>(); in InstallClass() local 104 arr->SetLength(length); in InstallClass() 105 EXPECT_EQ(arr->SizeOf<kVerifyNone>(), size); in InstallClass()
|
/art/compiler/dex/quick/x86/ |
D | assemble_x86.cc | 294 arr, arr_kind, arr_flags, imm, \ argument 299 … 8 ## arr, arr_kind, IS_LOAD | is_store | arr_flags | b_flags | sets_ccodes, { 0, 0, 0xF6, 0,… 302 …16 ## arr, arr_kind, IS_LOAD | is_store | arr_flags | hw_flags | sets_ccodes, { 0x66, 0, 0xF7, 0, … 305 …32 ## arr, arr_kind, IS_LOAD | is_store | arr_flags | w_flags | sets_ccodes, { 0, 0, 0xF7, 0, … 308 …4 ## arr, arr_kind, IS_LOAD | is_store | arr_flags | w_flags | sets_ccodes, { REX_W, 0, 0xF7, 0, …
|