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

1 2

  /art/runtime/mirror/
object_array-inl.h 119 int32_t src_pos, int32_t count) {
123 src->GetWithoutChecks(src_pos + i);
132 const bool copy_forward = (src != this) || (dst_pos < src_pos) || (dst_pos - src_pos >= count);
137 Object* obj = src->GetWithoutChecks(src_pos + i);
144 Object* obj = src->GetWithoutChecks(src_pos + i);
149 dstAsIntArray->Memmove(dst_pos, srcAsIntArray, src_pos, count);
162 int32_t src_pos, int32_t count) {
166 src->GetWithoutChecks(src_pos + i);
177 T* obj = src->GetWithoutChecks(src_pos + i)
    [all...]
array-inl.h 244 inline void PrimitiveArray<T>::Memmove(int32_t dst_pos, PrimitiveArray<T>* src, int32_t src_pos,
250 DCHECK_GE(src_pos, 0);
255 DCHECK_LT(src_pos, src->GetLength());
256 DCHECK_LE(src_pos, src->GetLength() - count);
262 Memcpy(dst_pos, src, src_pos, count);
266 const void* src_raw = src->GetRawData(sizeof(T), src_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,
310 DCHECK_GE(src_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/chromium_org/v8/src/
scanner-character-streams.cc 19 unsigned* src_pos, unsigned src_length,
23 dest, length, src, src_pos, src_length);
27 if (to_fill > src_length - *src_pos) to_fill = src_length - *src_pos;
30 v8::internal::CopyChars<uint8_t, uint16_t>(dest, src + *src_pos, to_fill);
34 dest, reinterpret_cast<const uint16_t*>(src + *src_pos), to_fill);
36 *src_pos += to_fill;
178 unsigned* src_pos,
186 if (*src_pos == src_length) break;
187 unibrow::uchar c = src[*src_pos];
    [all...]
scanner-character-streams.h 63 unsigned* src_pos, unsigned src_length);
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
desktop_frame.cc 45 const DesktopVector& src_pos,
48 DesktopRect::MakeOriginSize(src_pos, dest_rect.size())));
50 CopyPixelsFrom(src_frame.data() + src_frame.stride() * src_pos.y() +
51 DesktopFrame::kBytesPerPixel * src_pos.x(),
desktop_frame.h 67 const DesktopVector& src_pos,
  /external/qemu/distrib/sdl-1.2.15/src/video/wscons/
SDL_wsconsvideo.h 43 typedef void WSCONS_bitBlit(Uint8 *src_pos,
SDL_wsconsvideo.c 408 Uint16 *src_pos = (Uint16 *)byte_src_pos; local
412 Uint16 *src = src_pos;
420 src_pos += srcDownDelta;
437 Uint16 *src_pos = (Uint16 *)byte_src_pos; local
441 Uint16 *src = src_pos;
455 src_pos += srcDownDelta * BLOCKSIZE_H;
  /external/chromium_org/third_party/webrtc/base/
win32.cc 165 const char* src_pos = src; local
168 while (*src_pos != '\0') {
171 if (!isdigit(*src_pos)) {
175 long value = strtol(src_pos, &end_pos, 10);
176 if (value < 0 || value > 255 || src_pos == end_pos) {
184 src_pos = end_pos;
185 if (*src_pos == '.') {
187 ++src_pos;
188 } else if (*src_pos != '\0') {
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/x11/
x_server_pixel_buffer.cc 271 uint8_t* src_pos = image; local
281 memcpy(dst_pos, src_pos, row_bytes);
282 src_pos += src_stride;
305 uint8_t* src_pos = image; local
313 uint32_t* src_pos_32 = reinterpret_cast<uint32_t*>(src_pos);
314 uint16_t* src_pos_16 = reinterpret_cast<uint16_t*>(src_pos);
323 pixel = src_pos[x];
333 src_pos += src_stride;
  /external/chromium_org/media/cast/sender/
audio_encoder.cc 113 int src_pos = 0; local
114 while (src_pos < audio_bus->frames()) {
116 samples_per_frame_ - buffer_fill_end_, audio_bus->frames() - src_pos);
119 audio_bus.get(), src_pos, buffer_fill_end_, num_samples_to_xfer);
120 src_pos += num_samples_to_xfer;
  /external/pdfium/core/src/fxge/dib/
fx_dib_transform.cpp 768 FX_LPCBYTE src_pos = stretch_buf + src_row * stretch_pitch + src_col * Bpp; local
    [all...]
fx_dib_main.cpp 751 FX_LPCBYTE src_pos = pSrcClone->GetScanline(row) + srcOffset; local
753 *dest_pos = *src_pos;
755 src_pos += srcBytes;
919 FX_LPBYTE src_pos = m_pBuffer + row * m_Pitch; local
922 if (src_pos[col / 8] & (1 << (7 - col % 8))) {
953 FX_LPBYTE src_pos = m_pBuffer + row * m_Pitch; local
972 FX_LPBYTE src_pos = m_pBuffer + row * m_Pitch; local
993 FX_LPBYTE src_pos = m_pBuffer + row * m_Pitch; local
    [all...]
fx_dib_engine.cpp 39 double src_pos = dest_pixel * scale + scale / 2 + base; local
41 pixel_weights.m_SrcStart = (int)FXSYS_floor((FX_FLOAT)src_pos - 1.0f / 2);
42 pixel_weights.m_SrcEnd = (int)FXSYS_floor((FX_FLOAT)src_pos + 1.0f / 2);
52 pixel_weights.m_Weights[1] = FXSYS_round((FX_FLOAT)(src_pos - pixel_weights.m_SrcStart - 1.0f / 2) * 65536);
56 pixel_weights.m_SrcStart = (int)FXSYS_floor((FX_FLOAT)src_pos - 1.0f / 2);
57 pixel_weights.m_SrcEnd = (int)FXSYS_floor((FX_FLOAT)src_pos + 1.0f / 2);
67 src_pos += src_min - pixel_weights.m_SrcStart;
74 weight = FXSYS_round((FX_FLOAT)(src_pos - pixel_weights.m_SrcStart - 1.0f / 2) * 256);
120 pixel_weights.m_SrcStart = pixel_weights.m_SrcEnd = (int)FXSYS_floor((FX_FLOAT)src_pos);
    [all...]
  /hardware/samsung_slsi/exynos5/libcamera/
ExynosJpegEncoderForCamera.cpp 694 int src_y_start_pos, dst_pos, src_pos; local
713 src_pos = src_y_start_pos + (stepXStride * x);
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
748 src_pos = src_y_start_pos + (x * step_x);
750 dst_buf[dst_pos++] = src_buf[src_pos];
762 src_pos = src_y_start_pos + (j * step_x)
    [all...]
  /hardware/samsung_slsi/exynos5/libcamera2/
ExynosJpegEncoderForCamera.cpp 680 int src_y_start_pos, dst_pos, src_pos; local
699 src_pos = src_y_start_pos + (stepXStride * x);
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
734 src_pos = src_y_start_pos + (x * step_x);
736 dst_buf[dst_pos++] = src_buf[src_pos];
745 src_pos = src_y_start_pos + (j * step_x)
    [all...]
  /external/lldb/source/Core/
DataExtractor.cpp 477 const uint16_t *src_pos = src; local
480 *dst_pos = ReadSwapInt16 (src_pos);
482 ++src_pos;
536 const uint32_t *src_pos = src; local
539 *dst_pos = ReadSwapInt32 (src_pos);
541 ++src_pos;
593 const uint64_t *src_pos = src; local
596 *dst_pos = ReadSwapInt64 (src_pos);
598 ++src_pos;
1257 const uint8_t *src_pos = src; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
SDL_fbvideo.h 42 Uint8 *src_pos,
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_loadimage.cpp 953 FX_LPCBYTE src_pos = src_scan; local
962 FX_LPCBYTE src_pos = src_scan; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/include/isl/
dim.h 80 enum isl_dim_type src_type, unsigned src_pos, unsigned n);
polynomial.h 78 enum isl_dim_type src_type, unsigned src_pos, unsigned n);
213 enum isl_dim_type src_type, unsigned src_pos, unsigned n);
292 enum isl_dim_type src_type, unsigned src_pos, unsigned n);
383 enum isl_dim_type src_type, unsigned src_pos, unsigned n);
space.h 87 enum isl_dim_type src_type, unsigned src_pos, unsigned n);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/isl/
dim.h 80 enum isl_dim_type src_type, unsigned src_pos, unsigned n);

Completed in 835 milliseconds

1 2