Lines Matching defs:bits
204 const int bits =
207 const int delta = (bits + DITHER_DESCALE_ROUNDER) >> DITHER_DESCALE;
680 static WEBP_INLINE void DoTransform(uint32_t bits, const int16_t* const src,
682 switch (bits >> 30) {
697 static void DoUVTransform(uint32_t bits, const int16_t* const src,
699 if (bits & 0xff) { // any non-zero coeff at all?
700 if (bits & 0xaa) { // any non-zero AC coefficient?
747 uint32_t bits = block->non_zero_y_;
777 for (n = 0; n < 16; ++n, bits <<= 2) {
780 DoTransform(bits, coeffs + n * 16, dst);
786 if (bits != 0) {
787 for (n = 0; n < 16; ++n, bits <<= 2) {
788 DoTransform(bits, coeffs + n * 16, y_dst + kScan[n]);