Lines Matching refs:shift_count
228 int32_t shift_count, value, f = *sample;
233 shift_count = 0;
235 shift_count = s->max_exp - get_exponent(f);
238 shift_count = s->max_exp ? s->max_exp - 1 : 0;
242 if (shift_count < 25)
243 value >>= shift_count;
252 } else if (shift_count) {
253 int32_t mask = (1 << shift_count) - 1;
2164 int32_t value, shift_count;
2175 shift_count = 0;
2177 shift_count = max_exp - get_exponent(*sample);
2180 shift_count = max_exp ? max_exp - 1 : 0;
2184 if (shift_count < 25)
2185 value >>= shift_count;
2206 } else if (shift_count) {
2208 put_sbits(pb, shift_count, get_mantissa(*sample));