OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ptrDst
(Results
1 - 2
of
2
) sorted by null
/external/opencv3/samples/cpp/
intelperc_capture.cpp
171
uchar*
ptrDst
= image.ptr(row) + x * 3 + 2;//+2 -> Red
172
for (int col = 0; col < min(pointSize, image.cols - x); col++,
ptrDst
+=3)
174
*
ptrDst
= 255;
190
uchar*
ptrDst
= image.ptr(row);
195
*
ptrDst
= val;
ptrDst
++;
196
*
ptrDst
= val;
ptrDst
++;
197
*
ptrDst
= val;
ptrDst
++
[
all
...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
bitstream_io.cpp
628
UChar *
ptrDst
, *ptrSrc;
634
ptrDst
= bitstream1->bitstreamBuffer;
645
M4VENC_MEMCPY(
ptrDst
, ptrSrc, new_byte + 1);
652
*
ptrDst
++ = (ptrSrc[0] << bitused) | (ptrSrc[1] >> leftover);
658
*
ptrDst
++ = (ptrSrc[0] << bitused) | (ptrSrc[1] >> leftover);
Completed in 498 milliseconds