HomeSort by relevance Sort by last modified time
    Searched refs:PopulationCost (Results 1 - 2 of 2) sorted by null

  /external/opencv3/3rdparty/libwebp/enc/
histogram.c 191 static double PopulationCost(const int* const population, int length) {
204 return PopulationCost(p->literal_, VP8LHistogramNumCodes(p))
205 + PopulationCost(p->red_, 256)
206 + PopulationCost(p->blue_, 256)
207 + PopulationCost(p->alpha_, 256)
208 + PopulationCost(p->distance_, NUM_DISTANCE_CODES)
267 cost += PopulationCost(out->literal_, VP8LHistogramNumCodes(out));
272 cost += PopulationCost(out->red_, 256);
276 cost += PopulationCost(out->blue_, 256);
282 cost += PopulationCost(out->distance_, NUM_DISTANCE_CODES)
    [all...]
  /external/webp/src/enc/
histogram.c 226 static double PopulationCost(const uint32_t* const population, int length,
252 PopulationCost(
254 + PopulationCost(p->red_, NUM_LITERAL_CODES, NULL)
255 + PopulationCost(p->blue_, NUM_LITERAL_CODES, NULL)
256 + PopulationCost(p->alpha_, NUM_LITERAL_CODES, NULL)
257 + PopulationCost(p->distance_, NUM_DISTANCE_CODES, NULL)
368 PopulationCost(h->alpha_, NUM_LITERAL_CODES, &alpha_sym);
370 PopulationCost(h->distance_, NUM_DISTANCE_CODES, NULL) +
373 h->literal_cost_ = PopulationCost(h->literal_, num_codes, NULL) +
376 h->red_cost_ = PopulationCost(h->red_, NUM_LITERAL_CODES, &red_sym)
    [all...]

Completed in 79 milliseconds