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

1 2

  /art/runtime/mirror/
object_array-inl.h 118 inline void ObjectArray<T>::AssignableMemmove(int32_t dst_pos, ObjectArray<T>* src,
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,
178 SetWithoutChecks<false>(dst_pos + i, obj)
    [all...]
array-inl.h 244 inline void PrimitiveArray<T>::Memmove(int32_t dst_pos, PrimitiveArray<T>* src, int32_t src_pos,
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,
309 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 150 void Memmove(int32_t dst_pos, PrimitiveArray<T>* src, int32_t src_pos, int32_t count)
158 void Memcpy(int32_t dst_pos, PrimitiveArray<T>* src, int32_t src_pos, int32_t count)
  /external/qemu/distrib/sdl-1.2.15/src/video/wscons/
SDL_wsconsvideo.h 46 Uint8 *dst_pos,
SDL_wsconsvideo.c 409 Uint16 *dst_pos = (Uint16 *)byte_dst_pos; local
413 Uint16 *dst = dst_pos;
419 dst_pos = (Uint16 *)((Uint8 *)dst_pos + dst_linebytes);
438 Uint16 *dst_pos = (Uint16 *)byte_dst_pos; local
442 Uint16 *dst = dst_pos;
454 dst_pos = (Uint16 *)((Uint8 *)dst_pos + dst_linebytes * BLOCKSIZE_H);
  /external/qemu/android/skin/
surface.h 90 SkinPos* dst_pos,
surface.c 339 SkinPos* dst_pos,
343 int x = dst_pos->x;
344 int y = dst_pos->y;
582 SkinPos* dst_pos,
597 if ( skin_blit_init_blit( blit, dst, dst_pos, src, src_rect ) ) {
  /external/chromium_org/third_party/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();
  /hardware/samsung_slsi/exynos5/libcamera/
ExynosJpegEncoderForCamera.cpp 694 int src_y_start_pos, dst_pos, src_pos; local
708 dst_pos = 0;
715 dst_buf[dst_pos++] = src_buf[src_pos ];
716 dst_buf[dst_pos++] = src_buf[src_pos + 1];
717 dst_buf[dst_pos++] = src_buf[src_pos + 2];
718 dst_buf[dst_pos++] = src_buf[src_pos + 3];
728 int32_t src_y_start_pos, dst_pos, src_pos; local
743 dst_pos = 0;
750 dst_buf[dst_pos++] = src_buf[src_pos];
757 dst_pos = 0
    [all...]
ExynosCameraHWInterface.cpp 3514 int32_t x, y, src_y_start_pos, dst_pos, src_pos; local
3543 int32_t x, y, src_y_start_pos, dst_cbcr_pos, dst_pos, src_pos; local
    [all...]
  /hardware/samsung_slsi/exynos5/libcamera2/
ExynosJpegEncoderForCamera.cpp 680 int src_y_start_pos, dst_pos, src_pos; local
694 dst_pos = 0;
701 dst_buf[dst_pos++] = src_buf[src_pos ];
702 dst_buf[dst_pos++] = src_buf[src_pos + 1];
703 dst_buf[dst_pos++] = src_buf[src_pos + 2];
704 dst_buf[dst_pos++] = src_buf[src_pos + 3];
714 int32_t src_y_start_pos, dst_pos, src_pos; local
729 dst_pos = 0;
736 dst_buf[dst_pos++] = src_buf[src_pos];
747 dst_buf[dst_pos++] = src_buf[src_pos ]
    [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...]
  /external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
SDL_fbvideo.h 45 Uint8 *dst_pos,
SDL_fbvideo.c 1450 Uint16 *dst_pos = (Uint16 *)byte_dst_pos; local
1474 Uint16 *dst_pos = (Uint16 *)byte_dst_pos; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/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.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,
  /art/test/MyClassNatives/
MyClassNatives.java 33 static native void arraycopy(Object src, int src_pos, Object dst, int dst_pos, int length);

Completed in 970 milliseconds

1 2