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

/art/runtime/native/
H A Djava_lang_System.cc206 mirror::Array* dstArray = dstObject->AsArray(); local
208 mirror::Class* dstComponentType = dstArray->GetClass()->GetComponentType();
211 if (UNLIKELY(srcPos < 0 || dstPos < 0 || length < 0 || srcPos > srcArray->GetLength() - length || dstPos > dstArray->GetLength() - length)) {
215 srcArray->GetLength(), srcPos, dstArray->GetLength(), dstPos, length);
224 std::string dstType(PrettyTypeOf(dstArray));
233 uint8_t* dstBytes = reinterpret_cast<uint8_t*>(dstArray->GetRawData(width));
259 uint8_t* dstBytes = reinterpret_cast<uint8_t*>(dstArray->GetRawData(width));
261 if (dstArray == srcArray || dstComponentType->IsAssignableFrom(srcComponentType)) {
265 Runtime::Current()->GetHeap()->WriteBarrierArray(dstArray, dstPos, length);
276 CHECK_NE(dstArray, srcArra
[all...]

Completed in 40 milliseconds