OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dither_scan
(Results
1 - 3
of
3
) sorted by null
/external/skia/src/core/
SkDither.h
182
#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/
SkBlitRow_opts_mips_dsp.cpp
123
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
>> ((x & 3) << 2)) & 0xF
[
all
...]
SkBlitRow_opts_SSE2.cpp
838
const uint8_t*
dither_scan
= gDitherMatrix_3Bit_4X4[(y) & 3];
local
844
const uint16_t
dither_scan
= gDitherMatrix_3Bit_16[(y) & 3];
local
971
const uint8_t*
dither_scan
= gDitherMatrix_3Bit_4X4[(y) & 3];
local
977
const uint16_t
dither_scan
= gDitherMatrix_3Bit_16[(y) & 3];
local
[
all
...]
Completed in 564 milliseconds