Searched refs:dither_scan (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/skia/include/core/
H A DSkDither.h182 #define DITHER_4444_SCAN(y) const uint8_t* dither_scan = gDitherMatrix_4Bit_4X4[(y) & 3]
183 #define DITHER_565_SCAN(y) const uint8_t* dither_scan = gDitherMatrix_3Bit_4X4[(y) & 3]
185 #define DITHER_VALUE(x) dither_scan[(x) & 3]
190 #define DITHER_4444_SCAN(y) const uint16_t dither_scan = gDitherMatrix_4Bit_16[(y) & 3]
191 #define DITHER_565_SCAN(y) const uint16_t dither_scan = gDitherMatrix_3Bit_16[(y) & 3]
193 #define DITHER_VALUE(x) ((dither_scan >> (((x) & 3) << 2)) & 0xF)
/external/skia/include/core/
H A DSkDither.h182 #define DITHER_4444_SCAN(y) const uint8_t* dither_scan = gDitherMatrix_4Bit_4X4[(y) & 3]
183 #define DITHER_565_SCAN(y) const uint8_t* dither_scan = gDitherMatrix_3Bit_4X4[(y) & 3]
185 #define DITHER_VALUE(x) dither_scan[(x) & 3]
190 #define DITHER_4444_SCAN(y) const uint16_t dither_scan = gDitherMatrix_4Bit_16[(y) & 3]
191 #define DITHER_565_SCAN(y) const uint16_t dither_scan = gDitherMatrix_3Bit_16[(y) & 3]
193 #define DITHER_VALUE(x) ((dither_scan >> (((x) & 3) << 2)) & 0xF)
/external/chromium_org/third_party/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.cpp1077 const uint8_t* dither_scan = gDitherMatrix_3Bit_4X4[(y) & 3]; local
1078 dither_value[0] = dither_value[4] = dither_scan[(x) & 3];
1079 dither_value[1] = dither_value[5] = dither_scan[(x + 1) & 3];
1080 dither_value[2] = dither_value[6] = dither_scan[(x + 2) & 3];
1081 dither_value[3] = dither_value[7] = dither_scan[(x + 3) & 3];
1083 const uint16_t dither_scan = gDitherMatrix_3Bit_16[(y) & 3]; local
1084 dither_value[0] = dither_value[4] = (dither_scan
1086 dither_value[1] = dither_value[5] = (dither_scan
1088 dither_value[2] = dither_value[6] = (dither_scan
1090 dither_value[3] = dither_value[7] = (dither_scan
1210 const uint8_t* dither_scan = gDitherMatrix_3Bit_4X4[(y) & 3]; local
1216 const uint16_t dither_scan = gDitherMatrix_3Bit_16[(y) & 3]; local
[all...]
/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.cpp1077 const uint8_t* dither_scan = gDitherMatrix_3Bit_4X4[(y) & 3]; local
1078 dither_value[0] = dither_value[4] = dither_scan[(x) & 3];
1079 dither_value[1] = dither_value[5] = dither_scan[(x + 1) & 3];
1080 dither_value[2] = dither_value[6] = dither_scan[(x + 2) & 3];
1081 dither_value[3] = dither_value[7] = dither_scan[(x + 3) & 3];
1083 const uint16_t dither_scan = gDitherMatrix_3Bit_16[(y) & 3]; local
1084 dither_value[0] = dither_value[4] = (dither_scan
1086 dither_value[1] = dither_value[5] = (dither_scan
1088 dither_value[2] = dither_value[6] = (dither_scan
1090 dither_value[3] = dither_value[7] = (dither_scan
1210 const uint8_t* dither_scan = gDitherMatrix_3Bit_4X4[(y) & 3]; local
1216 const uint16_t dither_scan = gDitherMatrix_3Bit_16[(y) & 3]; local
[all...]

Completed in 389 milliseconds