Lines Matching refs:ptrSrc
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)))
250 uchar val = (uchar) ((*ptrSrc) >> 2);
274 short* ptrSrc = (short*)depth.ptr(row);
275 for (int col = 0; col < depth.cols; col++, ptrSrc++, ptrDst++)
277 if ((lowValue == (*ptrSrc)) || (saturationValue == (*ptrSrc)))
280 *ptrDst = (uchar) ((*ptrSrc) >> 2);