HomeSort by relevance Sort by last modified time
    Searched refs:histo_argb (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/libwebp/dsp/
lossless.c 595 static WEBP_INLINE void UpdateHisto(int histo_argb[4][256], uint32_t argb) {
596 ++histo_argb[0][argb >> 24];
597 ++histo_argb[1][(argb >> 16) & 0xff];
598 ++histo_argb[2][(argb >> 8) & 0xff];
599 ++histo_argb[3][argb & 0xff];
620 int histo_argb[4][256]; local
621 memset(histo_argb, 0, sizeof(histo_argb));
637 UpdateHisto(histo_argb, VP8LSubPixels(current_row[col], predict));
641 accumulated, (const int (*)[256])histo_argb);
    [all...]
  /external/webp/src/dsp/
lossless.c 586 static WEBP_INLINE void UpdateHisto(int histo_argb[4][256], uint32_t argb) {
587 ++histo_argb[0][argb >> 24];
588 ++histo_argb[1][(argb >> 16) & 0xff];
589 ++histo_argb[2][(argb >> 8) & 0xff];
590 ++histo_argb[3][argb & 0xff];
611 int histo_argb[4][256]; local
612 memset(histo_argb, 0, sizeof(histo_argb));
628 UpdateHisto(histo_argb, VP8LSubPixels(current_row[col], predict));
632 accumulated, (const int (*)[256])histo_argb);
    [all...]

Completed in 97 milliseconds