Searched refs:palette_code_bits (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/libwebp/enc/
H A Dhistogram.h60 // 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) { argument
104 ((palette_code_bits > 0) ? (1 << palette_code_bits) : 0);
H A Dhistogram.c76 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) { argument
85 p->palette_code_bits_ = palette_code_bits;
294 const int palette_code_bits = a->palette_code_bits_; local
297 VP8LHistogramNumCodes(palette_code_bits));
74 VP8LHistogramCreate(VP8LHistogram* const p, const VP8LBackwardRefs* const refs, int palette_code_bits) argument
/external/webp/src/enc/
H A Dhistogram.h60 // 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) { argument
104 ((palette_code_bits > 0) ? (1 << palette_code_bits) : 0);
H A Dhistogram.c76 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) { argument
85 p->palette_code_bits_ = palette_code_bits;
294 const int palette_code_bits = a->palette_code_bits_; local
297 VP8LHistogramNumCodes(palette_code_bits));
74 VP8LHistogramCreate(VP8LHistogram* const p, const VP8LBackwardRefs* const refs, int palette_code_bits) argument

Completed in 150 milliseconds