Searched refs:histo_argb (Results 1 – 1 of 1) sorted by relevance
595 static WEBP_INLINE void UpdateHisto(int histo_argb[4][256], uint32_t argb) { in UpdateHisto()596 ++histo_argb[0][argb >> 24]; in UpdateHisto()597 ++histo_argb[1][(argb >> 16) & 0xff]; in UpdateHisto()598 ++histo_argb[2][(argb >> 8) & 0xff]; in UpdateHisto()599 ++histo_argb[3][argb & 0xff]; in UpdateHisto()620 int histo_argb[4][256]; in GetBestPredictorForTile() local621 memset(histo_argb, 0, sizeof(histo_argb)); in GetBestPredictorForTile()637 UpdateHisto(histo_argb, VP8LSubPixels(current_row[col], predict)); in GetBestPredictorForTile()641 accumulated, (const int (*)[256])histo_argb); in GetBestPredictorForTile()