Searched refs:src_array (Results 1 – 2 of 2) sorted by relevance
/art/runtime/mirror/ |
D | string-inl.h | 63 SetStringCountAndBytesVisitor(int32_t count, Handle<ByteArray> src_array, int32_t offset, in SetStringCountAndBytesVisitor() argument 65 : count_(count), src_array_(src_array), offset_(offset), high_byte_(high_byte) { in SetStringCountAndBytesVisitor() 99 SetStringCountAndValueVisitorFromCharArray(int32_t count, Handle<CharArray> src_array, in SetStringCountAndValueVisitorFromCharArray() argument 101 count_(count), src_array_(src_array), offset_(offset) { in SetStringCountAndValueVisitorFromCharArray()
|
/art/runtime/interpreter/ |
D | unstarted_runtime.cc | 731 mirror::Array* src_array, int32_t src_pos, in PrimitiveArrayCopy() argument 735 if (src_array->GetClass()->GetComponentType() != dst_array->GetClass()->GetComponentType()) { in PrimitiveArrayCopy() 739 src_array->GetClass()->GetComponentType()).c_str(), in PrimitiveArrayCopy() 744 mirror::PrimitiveArray<T>* src = down_cast<mirror::PrimitiveArray<T>*>(src_array); in PrimitiveArrayCopy() 782 mirror::Array* src_array = src_obj->AsArray(); in UnstartedSystemArraycopy() local 787 UNLIKELY(src_pos > src_array->GetLength() - length) || in UnstartedSystemArraycopy() 791 src_array->GetLength(), src_pos, dst_array->GetLength(), dst_pos, in UnstartedSystemArraycopy() 807 src_array->GetClass()->GetComponentType()).c_str(), in UnstartedSystemArraycopy() 813 mirror::ObjectArray<mirror::Object>* src = src_array->AsObjectArray<mirror::Object>(); in UnstartedSystemArraycopy() 841 PrimitiveArrayCopy<uint8_t>(self, src_array, src_pos, dst_array, dst_pos, length); in UnstartedSystemArraycopy() [all …]
|