Lines Matching refs:JSAMPLE
315 JSAMPLE* dstRow; in onGetPixels()
321 dstRow = (JSAMPLE*) dst; in onGetPixels()
339 dst = SkTAddOffset<JSAMPLE>(dst, dstRowBytes); in onGetPixels()
341 dstRow = SkTAddOffset<JSAMPLE>(dstRow, dstRowBytes); in onGetPixels()
488 JSAMPLE* dstRow; in onGetScanlines()
496 dstRow = (JSAMPLE*) dst; in onGetScanlines()
511 dst = SkTAddOffset<JSAMPLE>(dst, dstRowBytes); in onGetScanlines()
513 dstRow = SkTAddOffset<JSAMPLE>(dstRow, dstRowBytes); in onGetScanlines()
672 rowptrs[i] = SkTAddOffset<JSAMPLE>(pixels[0], i * sizeInfo.fYWidthBytes); in onGetYUV8Planes()
675 rowptrs[i + 2 * DCTSIZE] = SkTAddOffset<JSAMPLE>(pixels[1], i * sizeInfo.fUWidthBytes); in onGetYUV8Planes()
676 rowptrs[i + 3 * DCTSIZE] = SkTAddOffset<JSAMPLE>(pixels[2], i * sizeInfo.fVWidthBytes); in onGetYUV8Planes()
715 SkAutoTMalloc<JSAMPLE> dummyRow(sizeInfo.fYWidthBytes); in onGetYUV8Planes()