Home
last modified time | relevance | path

Searched refs:FLAC__bitmath_ilog2 (Results 1 – 9 of 9) sorted by relevance

/external/flac/libFLAC/
Dfixed.c76 fracbits = (8*sizeof(err)) - (FLAC__bitmath_ilog2(err)+1); in local__compute_rbps_integerized()
87 bits = FLAC__bitmath_ilog2(err)+1; in local__compute_rbps_integerized()
124 FLAC__ASSERT((int)FLAC__bitmath_ilog2(rbps)+1 <= fracbits + 6); in local__compute_rbps_integerized()
203 FLAC__ASSERT((int)FLAC__bitmath_ilog2(rbps)+1 <= fracbits + 6); in local__compute_rbps_wide_integerized()
Dbitwriter.c460 k = FLAC__bitmath_ilog2(parameter);
488 k = FLAC__bitmath_ilog2(parameter);
648 k = FLAC__bitmath_ilog2(parameter);
706 k = FLAC__bitmath_ilog2(parameter);
Dstream_encoder_intrin_avx2.c60 const unsigned threshold = 32 - FLAC__bitmath_ilog2(default_partition_samples); in FLAC__precompute_partition_info_sums_intrin_avx2()
Dstream_encoder_intrin_ssse3.c60 const unsigned threshold = 32 - FLAC__bitmath_ilog2(default_partition_samples); in FLAC__precompute_partition_info_sums_intrin_ssse3()
Dstream_encoder_intrin_sse2.c71 const unsigned threshold = 32 - FLAC__bitmath_ilog2(default_partition_samples); in FLAC__precompute_partition_info_sums_intrin_sse2()
Dbitreader.c887 k = FLAC__bitmath_ilog2(parameter);
931 k = FLAC__bitmath_ilog2(parameter);
Dstream_encoder.c3401 …if(subframe_bps + 4 + FLAC__bitmath_ilog2((frame_header->blocksize-FLAC__MAX_FIXED_ORDER)|1) <= 32) in process_subframe_()
3536 …max_qlp_coeff_precision = flac_min(32 - subframe_bps - FLAC__bitmath_ilog2(lpc_order), FLAC__MAX_Q… in process_subframe_()
3781 …qlp_coeff_precision = flac_min(qlp_coeff_precision, 32 - subframe_bps - FLAC__bitmath_ilog2(order)… in evaluate_lpc_subframe_()
3788 if(subframe_bps + qlp_coeff_precision + FLAC__bitmath_ilog2(order) <= 32) in evaluate_lpc_subframe_()
3976 const unsigned threshold = 32 - FLAC__bitmath_ilog2(default_partition_samples); in precompute_partition_info_sums_()
4053 raw_bits_per_partition[partition] = rmax? FLAC__bitmath_ilog2(rmax) + 2 : 1; in precompute_partition_info_escapes_()
Dstream_decoder.c2713 if(bps + subframe->qlp_coeff_precision + FLAC__bitmath_ilog2(order) <= 32) in read_subframe_lpc_()
/external/flac/libFLAC/include/private/
Dbitmath.h156 static inline unsigned FLAC__bitmath_ilog2(FLAC__uint32 v) in FLAC__bitmath_ilog2() function