Home | History | Annotate | Download | only in source

Lines Matching refs:roundVal

35   FIP: (fixVal+roundVal)>>qDomain
37 where roundVal = 2^(qDomain-1) = 1<<(qDomain-1)
42 WebRtc_Word32 roundVal;
44 roundVal = WEBRTC_SPL_LSHIFT_W32((WebRtc_Word32)1, qDomain-1);
45 intgr = WEBRTC_SPL_RSHIFT_W32(fixVal+roundVal, qDomain);