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

  /external/opencv3/samples/cpp/
intelperc_capture.cpp 191 short* ptrSrc = (short*)ir.ptr(row);
192 for (int col = 0; col < ir.cols; col++, ptrSrc++)
194 uchar val = (uchar) ((*ptrSrc) >> 2);
217 short* ptrSrc = (short*)ir.ptr(row);
218 for (int col = 0; col < ir.cols; col++, ptrSrc++, ptrDst++)
220 *ptrDst = (uchar) ((*ptrSrc) >> 2);
239 short* ptrSrc = (short*)depth.ptr(row);
240 for (int col = 0; col < depth.cols; col++, ptrSrc++)
242 if ((lowValue == (*ptrSrc)) || (saturationValue == (*ptrSrc)))
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
bitstream_io.cpp 628 UChar *ptrDst, *ptrSrc;
633 ptrSrc = bitstream1->bitstreamBuffer + bitstream1->byteCount;
645 M4VENC_MEMCPY(ptrDst, ptrSrc, new_byte + 1);
652 *ptrDst++ = (ptrSrc[0] << bitused) | (ptrSrc[1] >> leftover);
653 ptrSrc++;
655 /* copy for the last byte of ptrSrc, copy extra bits doesn't hurt */
658 *ptrDst++ = (ptrSrc[0] << bitused) | (ptrSrc[1] >> leftover);
659 ptrSrc++
    [all...]

Completed in 101 milliseconds