Searched defs:BitsEntropy (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/libwebp/enc/
H A Dhistogram.c182 static double BitsEntropy(const uint32_t* const array, int n) { function
256 return BitsEntropy(population, length) + HuffmanCost(population, length);
278 BitsEntropy(p->literal_, VP8LHistogramNumCodes(p->palette_code_bits_))
279 + BitsEntropy(p->red_, NUM_LITERAL_CODES)
280 + BitsEntropy(p->blue_, NUM_LITERAL_CODES)
281 + BitsEntropy(p->alpha_, NUM_LITERAL_CODES)
282 + BitsEntropy(p->distance_, NUM_DISTANCE_CODES)
/external/webp/src/enc/
H A Dhistogram.c182 static double BitsEntropy(const uint32_t* const array, int n) { function
256 return BitsEntropy(population, length) + HuffmanCost(population, length);
278 BitsEntropy(p->literal_, VP8LHistogramNumCodes(p->palette_code_bits_))
279 + BitsEntropy(p->red_, NUM_LITERAL_CODES)
280 + BitsEntropy(p->blue_, NUM_LITERAL_CODES)
281 + BitsEntropy(p->alpha_, NUM_LITERAL_CODES)
282 + BitsEntropy(p->distance_, NUM_DISTANCE_CODES)

Completed in 105 milliseconds