/art/runtime/mirror/ |
object_array-inl.h | 131 inline void ObjectArray<T>::AssignableMemmove(int32_t dst_pos, 147 const bool copy_forward = (src != this) || (dst_pos < src_pos) || (dst_pos - src_pos >= count); 162 SetWithoutChecksAndWriteBarrier<false>(dst_pos + i, obj); 170 SetWithoutChecksAndWriteBarrier<false>(dst_pos + i, obj); 187 SetWithoutChecksAndWriteBarrier<false>(dst_pos + i, obj); 195 SetWithoutChecksAndWriteBarrier<false>(dst_pos + i, obj); 199 Runtime::Current()->GetHeap()->WriteBarrierArray(this, dst_pos, count); 203 GetWithoutChecks(dst_pos + i); 209 inline void ObjectArray<T>::AssignableMemcpy(int32_t dst_pos, [all...] |
object_array.h | 80 void AssignableMemmove(int32_t dst_pos, 87 void AssignableMemcpy(int32_t dst_pos, 95 void AssignableCheckingMemcpy(int32_t dst_pos,
|
array-inl.h | 298 inline void PrimitiveArray<T>::Memmove(int32_t dst_pos, 305 DCHECK_GE(dst_pos, 0); 309 DCHECK_LT(dst_pos, GetLength()); 310 DCHECK_LE(dst_pos, GetLength() - count); 318 Memcpy(dst_pos, src, src_pos, count); 321 void* dst_raw = GetRawData(sizeof(T), dst_pos); 328 const bool copy_forward = (dst_pos < src_pos) || (dst_pos - src_pos >= count); 360 inline void PrimitiveArray<T>::Memcpy(int32_t dst_pos, 367 DCHECK_GE(dst_pos, 0) [all...] |
array.h | 160 void Memmove(int32_t dst_pos, ObjPtr<PrimitiveArray<T>> src, int32_t src_pos, int32_t count) 168 void Memcpy(int32_t dst_pos, ObjPtr<PrimitiveArray<T>> src, int32_t src_pos, int32_t count) 227 void Memcpy(int32_t dst_pos,
|
/external/pdfium/core/fxcodec/lbmp/ |
fx_bmp.cpp | 708 uint32_t size, dst_pos, i; local 711 dst_pos = bmp_ptr->file_header.bfOffBits; 714 FXSYS_memset(&dst_buf[dst_pos], 0, size); 732 SetDWord_LSBFirst(&dst_buf[dst_pos], mask_red); 733 dst_pos += 4; 734 SetDWord_LSBFirst(&dst_buf[dst_pos], mask_green); 735 dst_pos += 4; 736 SetDWord_LSBFirst(&dst_buf[dst_pos], mask_blue); 737 dst_pos += 4; 738 bmp_ptr->file_header.bfOffBits = dst_pos; 791 uint32_t size, dst_pos; local 821 uint32_t size, dst_pos, index; local 866 uint32_t size, dst_pos, index; local [all...] |
/external/webrtc/webrtc/modules/desktop_capture/x11/ |
x_server_pixel_buffer.cc | 275 uint8_t* dst_pos = frame->data() + frame->stride() * dst_y; local 276 dst_pos += dst_x * DesktopFrame::kBytesPerPixel; 281 memcpy(dst_pos, src_pos, row_bytes); 283 dst_pos += frame->stride(); 304 uint8_t* dst_pos = frame->data() + frame->stride() * dst_y; local 306 dst_pos += dst_x * DesktopFrame::kBytesPerPixel; 312 uint32_t* dst_pos_32 = reinterpret_cast<uint32_t*>(dst_pos); 332 dst_pos += frame->stride();
|
/art/runtime/interpreter/ |
unstarted_runtime.cc | 733 mirror::Array* dst_array, int32_t dst_pos, 747 const bool copy_forward = (dst_pos < src_pos) || (dst_pos - src_pos >= length); 750 dst->Set(dst_pos + i, src->Get(src_pos + i)); 754 dst->Set(dst_pos + length - i, src->Get(src_pos + length - i)); 763 jint dst_pos = shadow_frame->GetVReg(arg_offset + 3); local 787 if (UNLIKELY(src_pos < 0) || UNLIKELY(dst_pos < 0) || UNLIKELY(length < 0) || 789 UNLIKELY(dst_pos > dst_array->GetLength() - length)) { 792 src_array->GetLength(), src_pos, dst_array->GetLength(), dst_pos, [all...] |
unstarted_runtime_test.cc | 119 int32_t dst_pos, 126 tmp->SetVReg(3, dst_pos); 144 int32_t dst_pos, 163 dst_pos, [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/compiler/optimizing/ |
intrinsics_arm64.cc | 2120 HIntConstant* dst_pos = invoke->InputAt(3)->AsIntConstant(); local 2250 Location dst_pos = locations->InAt(3); local [all...] |
intrinsics_x86_64.cc | [all...] |
/art/test/MyClassNatives/ |
MyClassNatives.java | 59 static native void arraycopy(Object src, int src_pos, Object dst, int dst_pos, int length); 193 static native void arraycopy_Fast(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,
|
/libcore/ojluni/src/main/native/ |
jvm.h | 110 jobject dst, jint dst_pos, jint length); [all...] |