Searched refs:FLAC__bitmath_ilog2 (Results 1 – 6 of 6) sorted by relevance
76 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()
430 k = FLAC__bitmath_ilog2(parameter);458 k = FLAC__bitmath_ilog2(parameter);615 k = FLAC__bitmath_ilog2(parameter);673 k = FLAC__bitmath_ilog2(parameter);
861 k = FLAC__bitmath_ilog2(parameter);905 k = FLAC__bitmath_ilog2(parameter);
872 …encoder->private_->use_wide_by_block = (encoder->protected_->bits_per_sample + FLAC__bitmath_ilog2… in init_stream_internal_()873 …encoder->private_->use_wide_by_order = (encoder->protected_->bits_per_sample + FLAC__bitmath_ilog2… in init_stream_internal_()3541 …max_qlp_coeff_precision = flac_min(32 - subframe_bps - FLAC__bitmath_ilog2(lpc_order), FLAC__MAX_Q… in process_subframe_()3786 …qlp_coeff_precision = flac_min(qlp_coeff_precision, 32 - subframe_bps - FLAC__bitmath_ilog2(order)… in evaluate_lpc_subframe_()3793 if(subframe_bps + qlp_coeff_precision + FLAC__bitmath_ilog2(order) <= 32) in evaluate_lpc_subframe_()3984 if(FLAC__bitmath_ilog2(default_partition_samples) + bps + FLAC__MAX_EXTRA_RESIDUAL_BPS < 32) { in precompute_partition_info_sums_()4062 raw_bits_per_partition[partition] = rmax? FLAC__bitmath_ilog2(rmax) + 2 : 1; in precompute_partition_info_escapes_()
2722 if(bps + subframe->qlp_coeff_precision + FLAC__bitmath_ilog2(order) <= 32) in read_subframe_lpc_()
127 static inline unsigned FLAC__bitmath_ilog2(FLAC__uint32 v) in FLAC__bitmath_ilog2() function