VP8BitCost 342 third_party/libwebp/enc/cost.c cost += VP8BitCost(bits & 1, probas[i]); VP8BitCost 363 third_party/libwebp/enc/cost.c const int cost_base = VP8BitCost(1, p[1]); VP8BitCost 365 third_party/libwebp/enc/cost.c table[0] = VP8BitCost(0, p[1]); VP8BitCost 138 third_party/libwebp/enc/frame.c size += nb_events * VP8BitCost(1, proba->skip_proba_) VP8BitCost 139 third_party/libwebp/enc/frame.c + (nb_mbs - nb_events) * VP8BitCost(0, proba->skip_proba_); VP8BitCost 231 third_party/libwebp/enc/frame.c return nb * VP8BitCost(1, proba) + (total - nb) * VP8BitCost(0, proba); VP8BitCost 249 third_party/libwebp/enc/frame.c + VP8BitCost(0, update_proba); VP8BitCost 251 third_party/libwebp/enc/frame.c + VP8BitCost(1, update_proba) VP8BitCost 254 third_party/libwebp/enc/frame.c size += VP8BitCost(use_new_p, update_proba); VP8BitCost 301 third_party/libwebp/enc/frame.c p[0] * (VP8BitCost(0, probas[0]) + VP8BitCost(0, probas[1])) + VP8BitCost 302 third_party/libwebp/enc/frame.c p[1] * (VP8BitCost(0, probas[0]) + VP8BitCost(1, probas[1])) + VP8BitCost 303 third_party/libwebp/enc/frame.c p[2] * (VP8BitCost(1, probas[0]) + VP8BitCost(0, probas[2])) + VP8BitCost 304 third_party/libwebp/enc/frame.c p[3] * (VP8BitCost(1, probas[0]) + VP8BitCost(1, probas[2])); VP8BitCost 347 third_party/libwebp/enc/frame.c return VP8BitCost(0, p0); VP8BitCost 349 third_party/libwebp/enc/frame.c cost = VP8BitCost(1, p0); VP8BitCost 357 third_party/libwebp/enc/frame.c cost += (v ? ~0U : 0) & VP8BitCost(1, res->prob[b][ctx][0]); VP8BitCost 368 third_party/libwebp/enc/frame.c cost += VP8BitCost(0, last_p0); VP8BitCost 580 third_party/libwebp/enc/quant.c cost = VP8BitCost(0, last_proba); VP8BitCost 646 third_party/libwebp/enc/quant.c cost += VP8BitCost(1, last_proba); VP8BitCost 659 third_party/libwebp/enc/quant.c if (n < 15) cost += VP8BitCost(0, last_proba); VP8BitCost 251 third_party/libwebp/enc/token.c size += VP8BitCost(bit, token & 0xffu); VP8BitCost 253 third_party/libwebp/enc/token.c size += VP8BitCost(bit, probas[token & 0x3fffu]);