Searched refs:byte_array (Results 1 - 11 of 11) sorted by relevance

/art/runtime/native/
H A Djava_lang_StringFactory.cc40 Handle<mirror::ByteArray> byte_array(hs.NewHandle(soa.Decode<mirror::ByteArray>(java_data)));
41 int32_t data_size = byte_array->GetLength();
51 byte_array,
/art/runtime/entrypoints/quick/
H A Dquick_alloc_entrypoints.cc94 mirror::ByteArray* byte_array, int32_t high, int32_t offset, int32_t byte_count, \
99 Handle<mirror::ByteArray> handle_array(hs.NewHandle(byte_array)); \
/art/test/004-JniTest/
H A Djni_test.cc604 jbyteArray byte_array = env->NewByteArray(byte_array_length); local
605 env->SetByteArrayRegion(byte_array, 0, byte_array_length, reinterpret_cast<const jbyte*>(test_array));
608 jstring s = reinterpret_cast<jstring>(env->NewObject(c, mid2, byte_array));
631 env->CallNonvirtualVoidMethod(s2, c, mid2, byte_array);
650 env->CallNonvirtualVoidMethod(s6, c, mid2, byte_array);
/art/runtime/mirror/
H A Dvar_handle.cc1870 ObjPtr<ByteArray> byte_array(raw_byte_array->AsByteArray());
1877 if (!CheckElementIndex(primitive_type, data_offset, byte_array->GetLength())) {
1881 int8_t* const data = byte_array->GetData();
/art/runtime/interpreter/
H A Dunstarted_runtime.cc1254 mirror::ByteArray* byte_array = array->AsByteArray(); local
1256 byte_array->SetWithoutChecks<true>(i + offset, *address);
/art/compiler/optimizing/
H A Dintrinsics_x86.cc1683 Register byte_array = locations->InAt(0).AsRegister<Register>(); local
1684 __ testl(byte_array, byte_array);
H A Dintrinsics_x86_64.cc1844 CpuRegister byte_array = locations->InAt(0).AsRegister<CpuRegister>(); local
1845 __ testl(byte_array, byte_array);
H A Dintrinsics_arm64.cc1803 Register byte_array = WRegisterFrom(locations->InAt(0)); local
1804 __ Cmp(byte_array, 0);
H A Dintrinsics_arm_vixl.cc2052 vixl32::Register byte_array = InputRegisterAt(invoke, 0); local
2053 __ Cmp(byte_array, 0);
H A Dintrinsics_mips.cc2303 Register byte_array = locations->InAt(0).AsRegister<Register>(); local
2306 __ Beqz(byte_array, slow_path->GetEntryLabel());
H A Dintrinsics_mips64.cc1864 GpuRegister byte_array = locations->InAt(0).AsRegister<GpuRegister>(); local
1868 __ Beqzc(byte_array, slow_path->GetEntryLabel());

Completed in 1155 milliseconds