get_mantissa 228 libavcodec/wavpackenc.c value = 0x800000 + get_mantissa(f); get_mantissa 231 libavcodec/wavpackenc.c value = get_mantissa(f); get_mantissa 240 libavcodec/wavpackenc.c if (get_exponent(f) || get_mantissa(f)) get_mantissa 247 libavcodec/wavpackenc.c if (!(get_mantissa(f) & mask)) get_mantissa 249 libavcodec/wavpackenc.c else if ((get_mantissa(f) & mask) == mask) get_mantissa 274 libavcodec/wavpackenc.c crc = crc * 27 + get_mantissa(f) * 9 + get_exponent(f) * 3 + get_sign(f); get_mantissa 284 libavcodec/wavpackenc.c crc = crc * 27 + get_mantissa(f) * 9 + get_exponent(f) * 3 + get_sign(f); get_mantissa 289 libavcodec/wavpackenc.c crc = crc * 27 + get_mantissa(f) * 9 + get_exponent(f) * 3 + get_sign(f); get_mantissa 2177 libavcodec/wavpackenc.c if (get_mantissa(*sample)) { get_mantissa 2179 libavcodec/wavpackenc.c put_bits(pb, 23, get_mantissa(*sample)); get_mantissa 2188 libavcodec/wavpackenc.c value = 0x800000 + get_mantissa(*sample); get_mantissa 2191 libavcodec/wavpackenc.c value = get_mantissa(*sample); get_mantissa 2201 libavcodec/wavpackenc.c if (get_exponent(*sample) || get_mantissa(*sample)) { get_mantissa 2203 libavcodec/wavpackenc.c put_bits(pb, 23, get_mantissa(*sample)); get_mantissa 2218 libavcodec/wavpackenc.c int32_t data = get_mantissa(*sample) & ((1 << shift_count) - 1); get_mantissa 2221 libavcodec/wavpackenc.c put_bits(pb, 1, get_mantissa(*sample) & 1);