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

  /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();
  /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...]
  /art/runtime/interpreter/
unstarted_runtime.cc 732 mirror::Array* dst_array, int32_t dst_pos,
746 const bool copy_forward = (dst_pos < src_pos) || (dst_pos - src_pos >= length);
749 dst->Set(dst_pos + i, src->Get(src_pos + i));
753 dst->Set(dst_pos + length - i, src->Get(src_pos + length - i));
762 jint dst_pos = shadow_frame->GetVReg(arg_offset + 3); local
786 if (UNLIKELY(src_pos < 0) || UNLIKELY(dst_pos < 0) || UNLIKELY(length < 0) ||
788 UNLIKELY(dst_pos > dst_array->GetLength() - length)) {
791 src_array->GetLength(), src_pos, dst_array->GetLength(), dst_pos,
    [all...]
  /external/mesa3d/src/intel/blorp/
blorp_blit.c 1063 nir_ssa_def *src_pos, *dst_pos, *color; local
    [all...]
  /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...]
  /art/compiler/optimizing/
intrinsics_arm64.cc 2117 HIntConstant* dst_pos = invoke->InputAt(3)->AsIntConstant(); local
2247 Location dst_pos = locations->InAt(3); local
    [all...]

Completed in 354 milliseconds