Searched defs:dither_scan (Results 1 - 2 of 2) sorted by relevance

/external/skia/src/opts/
H A DSkBlitRow_opts_mips_dsp.cpp123 const uint16_t dither_scan = gDitherMatrix_3Bit_16[(y) & 3]; local
142 "srav %[t5], %[dither_scan], %[t4] \n\t"
147 "srav %[t6], %[dither_scan], %[t5] \n\t"
235 : [dither_scan]"r"(dither_scan)
268 uint16_t dither_scan = gDitherMatrix_3Bit_16[(y) & 3]; local
275 dither[i] = (dither_scan >> ((x & 3) << 2)) & 0xF;
384 const uint8_t* dither_scan = gDitherMatrix_3Bit_4X4[(y) & 3]; local
386 const uint16_t dither_scan = gDitherMatrix_3Bit_16[(y) & 3]; local
391 dither[i] = (dither_scan >> ((
[all...]
H A DSkBlitRow_opts_SSE2.cpp883 const uint8_t* dither_scan = gDitherMatrix_3Bit_4X4[(y) & 3]; local
884 dither_value[0] = dither_value[4] = dither_scan[(x) & 3];
885 dither_value[1] = dither_value[5] = dither_scan[(x + 1) & 3];
886 dither_value[2] = dither_value[6] = dither_scan[(x + 2) & 3];
887 dither_value[3] = dither_value[7] = dither_scan[(x + 3) & 3];
889 const uint16_t dither_scan = gDitherMatrix_3Bit_16[(y) & 3]; local
890 dither_value[0] = dither_value[4] = (dither_scan
892 dither_value[1] = dither_value[5] = (dither_scan
894 dither_value[2] = dither_value[6] = (dither_scan
896 dither_value[3] = dither_value[7] = (dither_scan
1016 const uint8_t* dither_scan = gDitherMatrix_3Bit_4X4[(y) & 3]; local
1022 const uint16_t dither_scan = gDitherMatrix_3Bit_16[(y) & 3]; local
[all...]

Completed in 123 milliseconds