Home
last modified time | relevance | path

Searched refs:rowptrs (Results 1 – 2 of 2) sorted by relevance

/third_party/skia/src/codec/
DSkJpegCodec.cpp886 JSAMPROW rowptrs[2 * DCTSIZE + DCTSIZE + DCTSIZE]; in onGetYUVAPlanes() local
887 yuv[0] = &rowptrs[0]; // Y rows (DCTSIZE or 2 * DCTSIZE) in onGetYUVAPlanes()
888 yuv[1] = &rowptrs[2 * DCTSIZE]; // U rows (DCTSIZE) in onGetYUVAPlanes()
889 yuv[2] = &rowptrs[3 * DCTSIZE]; // V rows (DCTSIZE) in onGetYUVAPlanes()
895 rowptrs[i] = static_cast<JSAMPLE*>(planes[0].writable_addr()) + i* planes[0].rowBytes(); in onGetYUVAPlanes()
898 rowptrs[i + 2 * DCTSIZE] = in onGetYUVAPlanes()
900 rowptrs[i + 3 * DCTSIZE] = in onGetYUVAPlanes()
924 rowptrs[j] += blockIncrementY; in onGetYUVAPlanes()
927 rowptrs[j + 2 * DCTSIZE] += blockIncrementU; in onGetYUVAPlanes()
928 rowptrs[j + 3 * DCTSIZE] += blockIncrementV; in onGetYUVAPlanes()
[all …]
/third_party/flutter/skia/src/codec/
DSkJpegCodec.cpp914 JSAMPROW rowptrs[2 * DCTSIZE + DCTSIZE + DCTSIZE]; in onGetYUV8Planes() local
915 yuv[0] = &rowptrs[0]; // Y rows (DCTSIZE or 2 * DCTSIZE) in onGetYUV8Planes()
916 yuv[1] = &rowptrs[2 * DCTSIZE]; // U rows (DCTSIZE) in onGetYUV8Planes()
917 yuv[2] = &rowptrs[3 * DCTSIZE]; // V rows (DCTSIZE) in onGetYUV8Planes()
922 rowptrs[i] = SkTAddOffset<JSAMPLE>(planes[0], i * sizeInfo.fWidthBytes[0]); in onGetYUV8Planes()
925 rowptrs[i + 2 * DCTSIZE] = in onGetYUV8Planes()
927 rowptrs[i + 3 * DCTSIZE] = in onGetYUV8Planes()
951 rowptrs[i] += blockIncrementY; in onGetYUV8Planes()
954 rowptrs[i + 2 * DCTSIZE] += blockIncrementU; in onGetYUV8Planes()
955 rowptrs[i + 3 * DCTSIZE] += blockIncrementV; in onGetYUV8Planes()
[all …]