Searched refs:DSIZE (Results 1 - 3 of 3) sorted by relevance

/external/zlib/src/examples/
H A Dgzappend.c90 #define DSIZE 32768U macro
281 window = malloc(DSIZE);
306 strm->avail_out = DSIZE - have;
317 crc = crc32(crc, window + have, DSIZE - have - strm->avail_out);
319 have = DSIZE - strm->avail_out;
363 rotate(window, DSIZE, have);
364 have = DSIZE;
/external/chromium_org/third_party/libwebp/utils/
H A Dquant_levels_dec.c32 #define DSIZE 4 // dithering size (must be a power of two) macro
34 static const uint8_t kOrderedDither[DSIZE][DSIZE] = {
137 const uint8_t* const dither = kOrderedDither[p->row_ % DSIZE];
146 dst[x] = clip_8b(c + dither[x % DSIZE]);
/external/webp/src/utils/
H A Dquant_levels_dec.c32 #define DSIZE 4 // dithering size (must be a power of two) macro
34 static const uint8_t kOrderedDither[DSIZE][DSIZE] = {
137 const uint8_t* const dither = kOrderedDither[p->row_ % DSIZE];
146 dst[x] = clip_8b(c + dither[x % DSIZE]);

Completed in 166 milliseconds