Lines Matching defs:exp
99 int exp;113 exp = avio_rb16(pb) - 16383 - 63;115 if (exp <-63 || exp >63) {116 av_log(s, AV_LOG_ERROR, "exp %d is out of range\n", exp);119 if (exp >= 0)120 sample_rate = val << exp;122 sample_rate = (val + (1ULL<<(-exp-1))) >> -exp;