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

/art/runtime/mirror/
H A Darray-inl.h244 inline void PrimitiveArray<T>::Memmove(int32_t dst_pos, PrimitiveArray<T>* src, int32_t src_pos, argument
249 DCHECK_GE(dst_pos, 0);
253 DCHECK_LT(dst_pos, GetLength());
254 DCHECK_LE(dst_pos, GetLength() - count);
262 Memcpy(dst_pos, src, src_pos, count);
265 void* dst_raw = GetRawData(sizeof(T), dst_pos);
272 const bool copy_forward = (dst_pos < src_pos) || (dst_pos - src_pos >= count);
304 inline void PrimitiveArray<T>::Memcpy(int32_t dst_pos, PrimitiveArray<T>* src, int32_t src_pos, argument
309 DCHECK_GE(dst_pos,
[all...]
H A Dobject_array-inl.h118 inline void ObjectArray<T>::AssignableMemmove(int32_t dst_pos, ObjectArray<T>* src, argument
132 const bool copy_forward = (src != this) || (dst_pos < src_pos) || (dst_pos - src_pos >= count);
138 SetWithoutChecks<false>(dst_pos + i, obj);
145 SetWithoutChecks<false>(dst_pos + i, obj);
149 dstAsIntArray->Memmove(dst_pos, srcAsIntArray, src_pos, count);
151 Runtime::Current()->GetHeap()->WriteBarrierArray(this, dst_pos, count);
155 GetWithoutChecks(dst_pos + i);
161 inline void ObjectArray<T>::AssignableMemcpy(int32_t dst_pos, ObjectArray<T>* src, argument
178 SetWithoutChecks<false>(dst_pos
193 AssignableCheckingMemcpy(int32_t dst_pos, ObjectArray<T>* src, int32_t src_pos, int32_t count, bool throw_exception) argument
[all...]
/art/test/MyClassNatives/
H A DMyClassNatives.java33 static native void arraycopy(Object src, int src_pos, Object dst, int dst_pos, int length); argument
/art/compiler/jni/
H A Djni_compiler_test.cc868 void my_arraycopy(JNIEnv* env, jclass klass, jobject src, jint src_pos, jobject dst, jint dst_pos, jint length) { argument
873 EXPECT_EQ(5678, dst_pos);

Completed in 96 milliseconds