Home | History | Annotate | Download | only in ns

Lines Matching refs:frac_part

594   int16_t frac_part = 0;
609 frac_part = (int16_t)(tmp32no1 & 0x000007ff); // Q11
611 // 2^(int_part+frac_part) = 2^int_part * (1 + b)
612 // 'b' is given in Q11 and below stored in frac_part.
613 if (WEBRTC_SPL_RSHIFT_W16(frac_part, 10)) {
615 tmp32no2 = WEBRTC_SPL_MUL_16_16(2048 - frac_part, 1244); // Q21
619 tmp32no2 = WEBRTC_SPL_RSHIFT_W32(WEBRTC_SPL_MUL_16_16(frac_part, 804), 10);