Searched refs:lit_cost (Results 1 - 1 of 1) sorted by relevance
| /xsrc/external/mit/brotli/dist/c/enc/ | ||
| H A D | literal_cost.c | 105 double lit_cost; local in function:EstimateBitCostsForLiteralsUTF8 109 lit_cost = FastLog2(in_window_utf8[utf8_pos]) - FastLog2(histo); 110 lit_cost += 0.02905; 111 if (lit_cost < 1.0) { 112 lit_cost *= 0.5; 113 lit_cost += 0.5; 120 lit_cost += 0.7 - ((double)(2000 - i) / 2000.0 * 0.35); 122 cost[i] = (float)lit_cost; 161 double lit_cost = FastLog2(in_window) - FastLog2(histo); local in function:BrotliEstimateBitCostsForLiterals 162 lit_cost [all...] |
Completed in 3 milliseconds