Home
last modified time | relevance | path

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

/external/brotli/c/enc/
Dblock_splitter_inc.h70 double* insert_cost, in FN()
86 memset(insert_cost, 0, sizeof(insert_cost[0]) * data_size * num_histograms); in FN()
88 insert_cost[i] = FastLog2((uint32_t)histograms[i].total_count_); in FN()
93 insert_cost[i * num_histograms + j] = in FN()
94 insert_cost[j] - BitCost(histograms[j].data_[i]); in FN()
114 cost[k] += insert_cost[insert_cost_ix + k]; in FN()
407 double* insert_cost = BROTLI_ALLOC(m, double, data_size * num_histograms); in FN() local
414 BROTLI_IS_NULL(insert_cost) || BROTLI_IS_NULL(cost) || in FN()
422 insert_cost, cost, switch_signal, in FN()
429 BROTLI_FREE(m, insert_cost); in FN()