Searched refs:W_upper_MSB (Results 1 – 4 of 4) sorted by relevance
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/ |
D | arith_routines_hist.c | 24 uint32_t W_upper_LSB, W_upper_MSB; in WebRtcIsac_EncHistMulti() local 43 W_upper_MSB = W_upper >> 16; in WebRtcIsac_EncHistMulti() 44 W_lower = W_upper_MSB * cdf_lo; in WebRtcIsac_EncHistMulti() 46 W_upper = W_upper_MSB * cdf_hi; in WebRtcIsac_EncHistMulti() 93 uint32_t W_upper_LSB, W_upper_MSB; in WebRtcIsac_DecHistBisectMulti() local 122 W_upper_MSB = W_upper >> 16; in WebRtcIsac_DecHistBisectMulti() 131 W_tmp = W_upper_MSB * *cdf_ptr; in WebRtcIsac_DecHistBisectMulti() 201 uint32_t W_upper_LSB, W_upper_MSB; in WebRtcIsac_DecHistOneStepMulti() local 230 W_upper_MSB = W_upper >> 16; in WebRtcIsac_DecHistOneStepMulti() 234 W_tmp = W_upper_MSB * *cdf_ptr; in WebRtcIsac_DecHistOneStepMulti() [all …]
|
D | arith_routines_logist.c | 88 uint32_t W_upper_LSB, W_upper_MSB; in WebRtcIsac_EncLogisticMulti2() local 128 W_upper_MSB = W_upper >> 16; in WebRtcIsac_EncLogisticMulti2() 129 W_lower = W_upper_MSB * cdf_lo; in WebRtcIsac_EncLogisticMulti2() 131 W_upper = W_upper_MSB * cdf_hi; in WebRtcIsac_EncLogisticMulti2() 181 uint32_t W_upper_LSB, W_upper_MSB; in WebRtcIsac_DecLogisticMulti2() local 206 W_upper_MSB = W_upper >> 16; in WebRtcIsac_DecLogisticMulti2() 212 W_tmp = W_upper_MSB * cdf_tmp; in WebRtcIsac_DecLogisticMulti2() 220 W_tmp = W_upper_MSB * cdf_tmp; in WebRtcIsac_DecLogisticMulti2() 228 W_tmp = W_upper_MSB * cdf_tmp; in WebRtcIsac_DecLogisticMulti2() 245 W_tmp = W_upper_MSB * cdf_tmp; in WebRtcIsac_DecLogisticMulti2() [all …]
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
D | arith_routines_hist.c | 43 uint32_t W_upper_MSB; in WebRtcIsacfix_EncHistMulti() local 68 W_upper_MSB = W_upper >> 16; in WebRtcIsacfix_EncHistMulti() 69 W_lower = WEBRTC_SPL_UMUL(W_upper_MSB, cdfLo); in WebRtcIsacfix_EncHistMulti() 71 W_upper = WEBRTC_SPL_UMUL(W_upper_MSB, cdfHi); in WebRtcIsacfix_EncHistMulti() 157 uint32_t W_upper_MSB; in WebRtcIsacfix_DecHistBisectMulti() local 187 W_upper_MSB = W_upper >> 16; in WebRtcIsacfix_DecHistBisectMulti() 196 W_tmp = WEBRTC_SPL_UMUL_32_16(W_upper_MSB, *cdfPtr); in WebRtcIsacfix_DecHistBisectMulti() 292 uint32_t W_upper_MSB; in WebRtcIsacfix_DecHistOneStepMulti() local 320 W_upper_MSB = WEBRTC_SPL_RSHIFT_U32(W_upper, 16); in WebRtcIsacfix_DecHistOneStepMulti() 324 W_tmp = WEBRTC_SPL_UMUL_32_16(W_upper_MSB, *cdfPtr); in WebRtcIsacfix_DecHistOneStepMulti() [all …]
|
D | arith_routines_logist.c | 106 uint16_t W_upper_MSB; in WebRtcIsacfix_EncLogisticMulti2() local 151 W_upper_MSB = (uint16_t)WEBRTC_SPL_RSHIFT_U32(W_upper, 16); in WebRtcIsacfix_EncLogisticMulti2() 152 W_lower = WEBRTC_SPL_UMUL_32_16(cdfLo, W_upper_MSB); in WebRtcIsacfix_EncLogisticMulti2() 154 W_upper = WEBRTC_SPL_UMUL_32_16(cdfHi, W_upper_MSB); in WebRtcIsacfix_EncLogisticMulti2() 238 uint16_t W_upper_MSB; in WebRtcIsacfix_DecLogisticMulti2() local 296 W_upper_MSB = (uint16_t) WEBRTC_SPL_RSHIFT_U32(W_upper, 16); in WebRtcIsacfix_DecLogisticMulti2() 303 W_tmp = (uint32_t)cdfTmp * W_upper_MSB; in WebRtcIsacfix_DecLogisticMulti2() 312 W_tmp = (uint32_t)cdfTmp * W_upper_MSB; in WebRtcIsacfix_DecLogisticMulti2() 322 W_tmp = (uint32_t)cdfTmp * W_upper_MSB; in WebRtcIsacfix_DecLogisticMulti2() 341 W_tmp = (uint32_t)cdfTmp * W_upper_MSB; in WebRtcIsacfix_DecLogisticMulti2() [all …]
|