Lines Matching defs:exp
336 int exp = s->float_max_exp;
356 exp = 255;
357 } else if (exp) {
359 exp = s->float_max_exp;
360 if (exp <= shift)
361 shift = --exp;
362 exp -= shift;
377 exp = s->float_max_exp;
382 exp = 0;
387 exp = get_bits(&s->gb_extra_bits, 8);
396 *crc = *crc * 27 + S * 9 + exp * 3 + sign;
398 value.u = (sign << 31) | (exp << 23) | S;