HomeSort by relevance Sort by last modified time
    Searched refs:dst_pos (Results 1 - 21 of 21) sorted by null

  /art/runtime/mirror/
object_array-inl.h 123 inline void ObjectArray<T>::AssignableMemmove(int32_t dst_pos, ObjectArray<T>* src,
137 const bool copy_forward = (src != this) || (dst_pos < src_pos) || (dst_pos - src_pos >= count);
143 SetWithoutChecks<false>(dst_pos + i, obj);
150 SetWithoutChecks<false>(dst_pos + i, obj);
154 dstAsIntArray->Memmove(dst_pos, srcAsIntArray, src_pos, count);
156 Runtime::Current()->GetHeap()->WriteBarrierArray(this, dst_pos, count);
160 GetWithoutChecks(dst_pos + i);
166 inline void ObjectArray<T>::AssignableMemcpy(int32_t dst_pos, ObjectArray<T>* src,
183 SetWithoutChecks<false>(dst_pos + i, obj)
    [all...]
array-inl.h 278 inline void PrimitiveArray<T>::Memmove(int32_t dst_pos, PrimitiveArray<T>* src, int32_t src_pos,
283 DCHECK_GE(dst_pos, 0);
287 DCHECK_LT(dst_pos, GetLength());
288 DCHECK_LE(dst_pos, GetLength() - count);
296 Memcpy(dst_pos, src, src_pos, count);
299 void* dst_raw = GetRawData(sizeof(T), dst_pos);
306 const bool copy_forward = (dst_pos < src_pos) || (dst_pos - src_pos >= count);
338 inline void PrimitiveArray<T>::Memcpy(int32_t dst_pos, PrimitiveArray<T>* src, int32_t src_pos,
343 DCHECK_GE(dst_pos, 0)
    [all...]
object_array.h 71 void AssignableMemmove(int32_t dst_pos, ObjectArray<T>* src, int32_t src_pos,
75 void AssignableMemcpy(int32_t dst_pos, ObjectArray<T>* src, int32_t src_pos,
79 void AssignableCheckingMemcpy(int32_t dst_pos, ObjectArray<T>* src, int32_t src_pos,
array.h 144 void Memmove(int32_t dst_pos, PrimitiveArray<T>* src, int32_t src_pos, int32_t count)
152 void Memcpy(int32_t dst_pos, PrimitiveArray<T>* src, int32_t src_pos, int32_t count)
  /art/runtime/interpreter/
unstarted_runtime.cc 295 mirror::Array* dst_array, int32_t dst_pos,
306 const bool copy_forward = (dst_pos < src_pos) || (dst_pos - src_pos >= length);
309 dst->Set(dst_pos + i, src->Get(src_pos + i));
313 dst->Set(dst_pos + length - i, src->Get(src_pos + length - i));
322 jint dst_pos = shadow_frame->GetVReg(arg_offset + 3); local
338 if (UNLIKELY(src_pos < 0) || UNLIKELY(dst_pos < 0) || UNLIKELY(length < 0) ||
340 UNLIKELY(dst_pos > dst_array->GetLength() - length)) {
343 src_array->GetLength(), src_pos, dst_array->GetLength(), dst_pos,
377 const bool copy_forward = (dst_pos < src_pos) || (dst_pos - src_pos >= length)
    [all...]
  /external/lldb/source/Core/
DataExtractor.cpp 475 uint16_t *dst_pos = (uint16_t *)void_dst; local
476 uint16_t *dst_end = dst_pos + count;
478 while (dst_pos < dst_end)
480 *dst_pos = ReadSwapInt16 (src_pos);
481 ++dst_pos;
534 uint32_t *dst_pos = (uint32_t *)void_dst; local
535 uint32_t *dst_end = dst_pos + count;
537 while (dst_pos < dst_end)
539 *dst_pos = ReadSwapInt32 (src_pos);
540 ++dst_pos;
591 uint64_t *dst_pos = (uint64_t *)void_dst; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/isl/
dim.h 79 enum isl_dim_type dst_type, unsigned dst_pos,
polynomial.h 77 enum isl_dim_type dst_type, unsigned dst_pos,
212 enum isl_dim_type dst_type, unsigned dst_pos,
291 enum isl_dim_type dst_type, unsigned dst_pos,
382 enum isl_dim_type dst_type, unsigned dst_pos,
space.h 86 enum isl_dim_type dst_type, unsigned dst_pos,
set.h 331 enum isl_dim_type dst_type, unsigned dst_pos,
334 enum isl_dim_type dst_type, unsigned dst_pos,
map.h 417 enum isl_dim_type dst_type, unsigned dst_pos,
420 enum isl_dim_type dst_type, unsigned dst_pos,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/isl/
dim.h 79 enum isl_dim_type dst_type, unsigned dst_pos,
polynomial.h 77 enum isl_dim_type dst_type, unsigned dst_pos,
212 enum isl_dim_type dst_type, unsigned dst_pos,
291 enum isl_dim_type dst_type, unsigned dst_pos,
382 enum isl_dim_type dst_type, unsigned dst_pos,
space.h 86 enum isl_dim_type dst_type, unsigned dst_pos,
set.h 331 enum isl_dim_type dst_type, unsigned dst_pos,
334 enum isl_dim_type dst_type, unsigned dst_pos,
map.h 417 enum isl_dim_type dst_type, unsigned dst_pos,
420 enum isl_dim_type dst_type, unsigned dst_pos,
  /art/test/MyClassNatives/
MyClassNatives.java 33 static native void arraycopy(Object src, int src_pos, Object dst, int dst_pos, int length);
  /external/opencv/ml/src/
mlsvm.cpp 548 Qfloat* dst_pos = dst; local
553 CV_SWAP( dst_pos, dst_neg, temp );
559 dst_pos[j] = t;
    [all...]
  /external/mesa3d/src/gallium/state_trackers/xa/
xa_tgsi.c 434 struct ureg_src /*dst_pos, */ src_input, mask_pos;
503 dst_pos = ureg_DECL_fs_input(ureg,
  /external/mesa3d/src/gallium/state_trackers/xorg/
xorg_exa_tgsi.c 460 struct ureg_src /*dst_pos,*/ src_input, mask_pos;
536 dst_pos = ureg_DECL_fs_input(ureg,
  /art/compiler/jni/
jni_compiler_test.cc 833 void my_arraycopy(JNIEnv* env, jclass klass, jobject src, jint src_pos, jobject dst, jint dst_pos, jint length) {
838 EXPECT_EQ(5678, dst_pos);
    [all...]

Completed in 3403 milliseconds