Home
last modified time | relevance | path

Searched refs:cost_cache_ (Results 1 – 1 of 1) sorted by relevance

/external/webp/src/enc/
Dbackward_references_cost_enc.c190 double cost_cache_[MAX_LENGTH]; // Contains the GetLengthCost(cost_model, k). member
266 manager->cost_cache_[0] = GetLengthCost(cost_model, 0); in CostManagerInit()
268 manager->cost_cache_[i] = GetLengthCost(cost_model, i); in CostManagerInit()
270 if (manager->cost_cache_[i] != manager->cost_cache_[i - 1]) { in CostManagerInit()
295 cur->cost_ = manager->cost_cache_[0]; in CostManagerInit()
297 const double cost_val = manager->cost_cache_[i]; in CostManagerInit()
477 cost_tmp = (float)(distance_cost + manager->cost_cache_[k]); in PushInterval()