Lines Matching refs:literal_
34 uint32_t* const literal = p->literal_; in HistogramClear()
39 p->literal_ = literal; in HistogramClear()
51 uint32_t* const dst_literal = dst->literal_; in HistogramCopy()
56 dst->literal_ = dst_literal; in HistogramCopy()
105 histo->literal_ = (uint32_t*)(memory + sizeof(VP8LHistogram)); in VP8LAllocateHistogram()
130 set->histograms[i]->literal_ = (uint32_t*)(memory + sizeof(VP8LHistogram)); in VP8LAllocateHistogramSet()
144 ++histo->literal_[PixOrCopyLiteral(v, 1)]; in VP8LHistogramAddSinglePixOrCopy()
149 ++histo->literal_[literal_ix]; in VP8LHistogramAddSinglePixOrCopy()
153 ++histo->literal_[NUM_LITERAL_CODES + code]; in VP8LHistogramAddSinglePixOrCopy()
253 p->literal_, VP8LHistogramNumCodes(p->palette_code_bits_), NULL) in VP8LHistogramEstimateBits()
258 + VP8LExtraCost(p->literal_ + NUM_LITERAL_CODES, NUM_LENGTH_CODES) in VP8LHistogramEstimateBits()
271 *cost += GetCombinedEntropy(a->literal_, b->literal_, in GetCombinedHistogramEntropy()
273 *cost += VP8LExtraCostCombined(a->literal_ + NUM_LITERAL_CODES, in GetCombinedHistogramEntropy()
274 b->literal_ + NUM_LITERAL_CODES, in GetCombinedHistogramEntropy()
373 h->literal_cost_ = PopulationCost(h->literal_, num_codes, NULL) + in UpdateHistogramCost()
374 VP8LExtraCost(h->literal_ + NUM_LITERAL_CODES, in UpdateHistogramCost()