Lines Matching defs:ctable

20         const SkPMColor ctable[]) {
29 const SkPMColor ctable[]) {
39 const SkPMColor ctable[]) {
49 const SkPMColor ctable[]) {
59 const SkPMColor ctable[]) {
70 const SkPMColor ctable[]) {
89 int bpp, int deltaSrc, int offset, const SkPMColor* /*ctable*/) {
114 int bpp, int deltaSrc, int offset, const SkPMColor* /*ctable*/) {
137 int bpp, int deltaSrc, int offset, const SkPMColor* /*ctable*/) {
160 int bpp, int deltaSrc, int offset, const SkPMColor* /*ctable*/) {
191 int bpp, int deltaSrc, int offset, const SkPMColor ctable[]) {
199 dst[0] = SkPixel32ToPixel16(ctable[index]);
206 dst[x] = SkPixel32ToPixel16(ctable[index]);
212 int bpp, int deltaSrc, int offset, const SkPMColor ctable[]) {
220 dst[0] = ctable[index];
227 dst[x] = ctable[index];
235 int bpp, int deltaSrc, int offset, const SkPMColor ctable[]) {
240 SkPMColor c = ctable[*src];
248 int bpp, int deltaSrc, int offset, const SkPMColor ctable[]) {
253 SkPMColor c = ctable[*src];
263 int bytesPerPixel, int deltaSrc, int offset, const SkPMColor ctable[]) {
267 dst[x] = SkPixel32ToPixel16(ctable[*src]);
276 int bpp, int deltaSrc, int offset, const SkPMColor ctable[]) {
288 const SkPMColor ctable[]) {
301 int bytesPerPixel, int deltaSrc, int offset, const SkPMColor ctable[]) {
315 const SkPMColor ctable[]) {
327 const SkPMColor ctable[]) {
340 const SkPMColor ctable[]) {
353 const SkPMColor ctable[]) {
378 int bpp, int deltaSrc, int offset, const SkPMColor ctable[]) {
392 int bpp, int deltaSrc, int offset, const SkPMColor ctable[]) {
404 int bpp, int deltaSrc, int offset, const SkPMColor ctable[]) {
416 int offset, const SkPMColor ctable[]) {
427 int offset, const SkPMColor ctable[]) {
438 int bytesPerPixel, int deltaSrc, int offset, const SkPMColor ctable[]) {
452 int bpp, int deltaSrc, int offset, const SkPMColor ctable[]) {
464 int bpp, int deltaSrc, int offset, const SkPMColor ctable[]) {
476 int offset, const SkPMColor ctable[]) {
487 int offset, const SkPMColor ctable[]) {
498 int bpp, int deltaSrc, int offset, const SkPMColor ctable[]) {
511 const SkPMColor ctable[]) {
524 const SkPMColor ctable[]) {
539 const SkPMColor ctable[]) {
554 const SkPMColor ctable[]) {
569 const SkPMColor ctable[]) {
584 const SkPMColor ctable[]) {
599 const SkPMColor ctable[]) {
614 const SkPMColor ctable[]) {
674 int bpp, int deltaSrc, int offset, const SkPMColor ctable[]) {
690 int bpp, int deltaSrc, int offset, const SkPMColor ctable[]) {
706 const SkPMColor ctable[]) {
717 const SkPMColor ctable[]) {
728 int bpp, int deltaSrc, int offset, const SkPMColor ctable[]) {
745 int bpp, int deltaSrc, int offset, const SkPMColor ctable[]) {
746 SkASSERT(!ctable);
758 proc(dst32, (const uint8_t*)src16, width, bpp, deltaSrc, 0, ctable);
764 int bpp, int deltaSrc, int offset, const SkPMColor ctable[]) {
765 SkASSERT(!ctable);
777 proc(dst32, (const uint8_t*)src32, dstWidth, bpp, deltaSrc, 0, ctable);
804 return Make(dstInfo, &copy, proc, nullptr /*ctable*/, srcBPP,
809 const SkPMColor* ctable,
813 if (SkEncodedInfo::kPalette_Color == encodedInfo.color() && nullptr == ctable) {
1144 return Make(dstInfo, fastProc, proc, ctable, srcBPP, dstBPP, options, frame);
1148 RowProc fastProc, RowProc proc, const SkPMColor* ctable, int srcBPP,
1166 return std::unique_ptr<SkSwizzler>(new SkSwizzler(fastProc, proc, ctable, srcOffset, srcWidth,
1170 SkSwizzler::SkSwizzler(RowProc fastProc, RowProc proc, const SkPMColor* ctable, int srcOffset,
1175 , fColorTable(ctable)