OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:histo_bits
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/libwebp/enc/
histogram.c
425
int xsize, int
histo_bits
, const VP8LBackwardRefs* const backward_refs,
428
const int histo_xsize = VP8LSubSampleSize(xsize,
histo_bits
);
431
assert(
histo_bits
> 0);
435
const int ix = (y >>
histo_bits
) * histo_xsize + (x >>
histo_bits
);
681
int quality, int
histo_bits
, int cache_bits,
685
const int histo_xsize =
histo_bits
? VP8LSubSampleSize(xsize,
histo_bits
) : 1;
686
const int histo_ysize =
histo_bits
? VP8LSubSampleSize(ysize,
histo_bits
) : 1
[
all
...]
vp8l.c
431
VP8LBitWriter* const bw, int width, int
histo_bits
,
438
const int histo_xsize =
histo_bits
? VP8LSubSampleSize(width,
histo_bits
) : 1;
442
const int histogram_ix = histogram_symbols[
histo_bits
?
443
(y >>
histo_bits
) * histo_xsize +
444
(x >>
histo_bits
) : 0];
480
// Special case of EncodeImageInternal() for cache-bits=0,
histo_bits
=31
985
int
histo_bits
= (use_palette ? 9 : 7) - method;
local
[
all
...]
/external/webp/src/enc/
histogram.c
425
int xsize, int
histo_bits
, const VP8LBackwardRefs* const backward_refs,
428
const int histo_xsize = VP8LSubSampleSize(xsize,
histo_bits
);
431
assert(
histo_bits
> 0);
435
const int ix = (y >>
histo_bits
) * histo_xsize + (x >>
histo_bits
);
681
int quality, int
histo_bits
, int cache_bits,
685
const int histo_xsize =
histo_bits
? VP8LSubSampleSize(xsize,
histo_bits
) : 1;
686
const int histo_ysize =
histo_bits
? VP8LSubSampleSize(ysize,
histo_bits
) : 1
[
all
...]
vp8l.c
431
VP8LBitWriter* const bw, int width, int
histo_bits
,
438
const int histo_xsize =
histo_bits
? VP8LSubSampleSize(width,
histo_bits
) : 1;
442
const int histogram_ix = histogram_symbols[
histo_bits
?
443
(y >>
histo_bits
) * histo_xsize +
444
(x >>
histo_bits
) : 0];
480
// Special case of EncodeImageInternal() for cache-bits=0,
histo_bits
=31
985
int
histo_bits
= (use_palette ? 9 : 7) - method;
local
[
all
...]
Completed in 135 milliseconds