Home
last modified time | relevance | path

Searched refs:dither_scan (Results 1 – 3 of 3) sorted by relevance

/external/skia/include/core/
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/src/opts/
DSkBlitRow_opts_SSE2.cpp883 const uint8_t* dither_scan = gDitherMatrix_3Bit_4X4[(y) & 3]; in S32_D565_Opaque_Dither_SSE2() local
884 dither_value[0] = dither_value[4] = dither_scan[(x) & 3]; in S32_D565_Opaque_Dither_SSE2()
885 dither_value[1] = dither_value[5] = dither_scan[(x + 1) & 3]; in S32_D565_Opaque_Dither_SSE2()
886 dither_value[2] = dither_value[6] = dither_scan[(x + 2) & 3]; in S32_D565_Opaque_Dither_SSE2()
887 dither_value[3] = dither_value[7] = dither_scan[(x + 3) & 3]; in S32_D565_Opaque_Dither_SSE2()
889 const uint16_t dither_scan = gDitherMatrix_3Bit_16[(y) & 3]; in S32_D565_Opaque_Dither_SSE2() local
890 dither_value[0] = dither_value[4] = (dither_scan in S32_D565_Opaque_Dither_SSE2()
892 dither_value[1] = dither_value[5] = (dither_scan in S32_D565_Opaque_Dither_SSE2()
894 dither_value[2] = dither_value[6] = (dither_scan in S32_D565_Opaque_Dither_SSE2()
896 dither_value[3] = dither_value[7] = (dither_scan in S32_D565_Opaque_Dither_SSE2()
[all …]
DSkBlitRow_opts_mips_dsp.cpp123 const uint16_t dither_scan = gDitherMatrix_3Bit_16[(y) & 3]; in S32A_D565_Opaque_Dither_mips_dsp() local
235 : [dither_scan]"r"(dither_scan) in S32A_D565_Opaque_Dither_mips_dsp()
268 uint16_t dither_scan = gDitherMatrix_3Bit_16[(y) & 3]; in S32_D565_Opaque_Dither_mips_dsp() local
275 dither[i] = (dither_scan >> ((x & 3) << 2)) & 0xF; in S32_D565_Opaque_Dither_mips_dsp()
384 const uint8_t* dither_scan = gDitherMatrix_3Bit_4X4[(y) & 3]; in S32_D565_Blend_Dither_mips_dsp() local
386 const uint16_t dither_scan = gDitherMatrix_3Bit_16[(y) & 3]; in S32_D565_Blend_Dither_mips_dsp() local
391 dither[i] = (dither_scan >> ((x & 3) << 2)) & 0xF; in S32_D565_Blend_Dither_mips_dsp()