Searched refs:byte_array (Results 1 - 10 of 10) sorted by path

/art/compiler/optimizing/
H A Dintrinsics_arm.cc1219 Register byte_array = locations->InAt(0).AsRegister<Register>(); local
1220 __ cmp(byte_array, ShifterOperand(0));
H A Dintrinsics_arm64.cc1403 Register byte_array = WRegisterFrom(locations->InAt(0)); local
1404 __ Cmp(byte_array, 0);
H A Dintrinsics_mips.cc2187 Register byte_array = locations->InAt(0).AsRegister<Register>(); local
2190 __ Beqz(byte_array, slow_path->GetEntryLabel());
H A Dintrinsics_mips64.cc1580 GpuRegister byte_array = locations->InAt(0).AsRegister<GpuRegister>(); local
1583 __ Beqzc(byte_array, slow_path->GetEntryLabel());
H A Dintrinsics_x86.cc1542 Register byte_array = locations->InAt(0).AsRegister<Register>(); local
1543 __ testl(byte_array, byte_array);
H A Dintrinsics_x86_64.cc1643 CpuRegister byte_array = locations->InAt(0).AsRegister<CpuRegister>(); local
1644 __ testl(byte_array, byte_array);
/art/runtime/entrypoints/quick/
H A Dquick_alloc_entrypoints.cc156 mirror::ByteArray* byte_array, int32_t high, int32_t offset, int32_t byte_count, \
161 Handle<mirror::ByteArray> handle_array(hs.NewHandle(byte_array)); \
/art/runtime/interpreter/
H A Dunstarted_runtime.cc998 mirror::ByteArray* byte_array = array->AsByteArray(); local
1000 byte_array->SetWithoutChecks<true>(i + offset, *address);
/art/runtime/native/
H A Djava_lang_StringFactory.cc38 Handle<mirror::ByteArray> byte_array(hs.NewHandle(soa.Decode<mirror::ByteArray*>(java_data)));
39 int32_t data_size = byte_array->GetLength();
48 byte_array, offset, high,
/art/test/004-JniTest/
H A Djni_test.cc584 jbyteArray byte_array = env->NewByteArray(byte_array_length); local
585 env->SetByteArrayRegion(byte_array, 0, byte_array_length, reinterpret_cast<const jbyte*>(test_array));
588 jstring s = reinterpret_cast<jstring>(env->NewObject(c, mid2, byte_array));
611 env->CallNonvirtualVoidMethod(s2, c, mid2, byte_array);
630 env->CallNonvirtualVoidMethod(s6, c, mid2, byte_array);

Completed in 116 milliseconds