OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:PopulationCost
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/brotli/src/brotli/enc/
bit_cost.h
109
double
PopulationCost
(const Histogram<kSize>& histogram) {
/external/chromium_org/third_party/libwebp/enc/
histogram.c
255
static double
PopulationCost
(const uint32_t* const population, int length) {
267
PopulationCost
(p->literal_, VP8LHistogramNumCodes(p->palette_code_bits_))
268
+
PopulationCost
(p->red_, NUM_LITERAL_CODES)
269
+
PopulationCost
(p->blue_, NUM_LITERAL_CODES)
270
+
PopulationCost
(p->alpha_, NUM_LITERAL_CODES)
271
+
PopulationCost
(p->distance_, NUM_DISTANCE_CODES)
389
const double alpha_cost =
PopulationCost
(h->alpha_, NUM_LITERAL_CODES);
391
PopulationCost
(h->distance_, NUM_DISTANCE_CODES) +
394
h->literal_cost_ =
PopulationCost
(h->literal_, num_codes) +
397
h->red_cost_ =
PopulationCost
(h->red_, NUM_LITERAL_CODES)
[
all
...]
Completed in 336 milliseconds