OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:palette_code_bits
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/libwebp/enc/
histogram.h
60
//
palette_code_bits
is >= 0, initialize the histogram with this value.
63
int
palette_code_bits
);
65
// Return the size of the histogram for a given
palette_code_bits
.
66
int VP8LGetHistogramSize(int
palette_code_bits
);
68
// Set the
palette_code_bits
and reset the stats.
69
void VP8LHistogramInit(VP8LHistogram* const p, int
palette_code_bits
);
102
static WEBP_INLINE int VP8LHistogramNumCodes(int
palette_code_bits
) {
104
((
palette_code_bits
> 0) ? (1 <<
palette_code_bits
) : 0);
histogram.c
76
int
palette_code_bits
) {
77
if (
palette_code_bits
>= 0) {
78
p->palette_code_bits_ =
palette_code_bits
;
84
void VP8LHistogramInit(VP8LHistogram* const p, int
palette_code_bits
) {
85
p->palette_code_bits_ =
palette_code_bits
;
294
const int
palette_code_bits
= a->palette_code_bits_;
local
297
VP8LHistogramNumCodes(
palette_code_bits
));
/external/webp/src/enc/
histogram.h
60
//
palette_code_bits
is >= 0, initialize the histogram with this value.
63
int
palette_code_bits
);
65
// Return the size of the histogram for a given
palette_code_bits
.
66
int VP8LGetHistogramSize(int
palette_code_bits
);
68
// Set the
palette_code_bits
and reset the stats.
69
void VP8LHistogramInit(VP8LHistogram* const p, int
palette_code_bits
);
102
static WEBP_INLINE int VP8LHistogramNumCodes(int
palette_code_bits
) {
104
((
palette_code_bits
> 0) ? (1 <<
palette_code_bits
) : 0);
histogram.c
76
int
palette_code_bits
) {
77
if (
palette_code_bits
>= 0) {
78
p->palette_code_bits_ =
palette_code_bits
;
84
void VP8LHistogramInit(VP8LHistogram* const p, int
palette_code_bits
) {
85
p->palette_code_bits_ =
palette_code_bits
;
294
const int
palette_code_bits
= a->palette_code_bits_;
local
297
VP8LHistogramNumCodes(
palette_code_bits
));
Completed in 236 milliseconds