Home
last modified time | relevance | path

Searched refs:nshift (Results 1 – 5 of 5) sorted by relevance

/external/webrtc/src/common_audio/signal_processing_library/main/source/
Dspl_sqrt.c135 WebRtc_Word16 x_norm, nshift, t16, sh; in WebRtcSpl_Sqrt() local
157 nshift = WEBRTC_SPL_RSHIFT_W16(sh, 1); // nshift = sh>>1 in WebRtcSpl_Sqrt()
158 nshift = -nshift; // Negate the power for later de-normalization in WebRtcSpl_Sqrt()
164 if ((-2 * nshift) == sh) in WebRtcSpl_Sqrt()
181 A = (WebRtc_Word32)WEBRTC_SPL_SHIFT_W32(A, nshift); // De-normalize the result in WebRtcSpl_Sqrt()
/external/speex/libspeex/
Dlpc_bfin.h52 int nshift; in _spx_autocorr() local
72 nshift = -shift; in _spx_autocorr()
109 : : "m" (xs), "m" (x), "m" (ac32top), "m" (N_lag), "m" (lag_1), "m" (nshift) in _spx_autocorr()
/external/valgrind/main/VEX/priv/
Dhost_amd64_isel.c1003 Int nshift; in iselIntExpr_R_wrk() local
1005 nshift = e->Iex.Binop.arg2->Iex.Const.con->Ico.U8; in iselIntExpr_R_wrk()
1006 vassert(nshift >= 0); in iselIntExpr_R_wrk()
1007 if (nshift > 0) in iselIntExpr_R_wrk()
1009 addInstr(env, AMD64Instr_Sh64(shOp, nshift, dst)); in iselIntExpr_R_wrk()
Dhost_x86_isel.c902 Int nshift; in iselIntExpr_R_wrk() local
904 nshift = e->Iex.Binop.arg2->Iex.Const.con->Ico.U8; in iselIntExpr_R_wrk()
905 vassert(nshift >= 0); in iselIntExpr_R_wrk()
906 if (nshift > 0) in iselIntExpr_R_wrk()
908 addInstr(env, X86Instr_Sh32( shOp, nshift, dst )); in iselIntExpr_R_wrk()
/external/flac/libFLAC/
Dlpc.c230 const int nshift = -(*shift); in FLAC__lpc_quantize_coefficients() local
237 error += lp_coeff[i] / (1 << nshift); in FLAC__lpc_quantize_coefficients()