/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/ |
D | lsf_check.c | 27 int16_t *lsf, /* LSF parameters */ in WebRtcIlbcfix_LsfCheck() argument 44 if ((lsf[pos+1]-lsf[pos])<eps) { in WebRtcIlbcfix_LsfCheck() 46 if (lsf[pos+1]<lsf[pos]) { in WebRtcIlbcfix_LsfCheck() 47 lsf[pos+1]= lsf[pos]+eps2; in WebRtcIlbcfix_LsfCheck() 48 lsf[pos]= lsf[pos+1]-eps2; in WebRtcIlbcfix_LsfCheck() 50 lsf[pos]-=eps2; in WebRtcIlbcfix_LsfCheck() 51 lsf[pos+1]+=eps2; in WebRtcIlbcfix_LsfCheck() 57 if (lsf[pos]<minlsf) { in WebRtcIlbcfix_LsfCheck() 58 lsf[pos]=minlsf; in WebRtcIlbcfix_LsfCheck() 62 if (lsf[pos]>maxlsf) { in WebRtcIlbcfix_LsfCheck() [all …]
|
D | simple_interpolate_lsf.c | 35 int16_t *lsf, /* (i) the unquantized lsf coefficients Q13 */ in WebRtcIlbcfix_SimpleInterpolateLsf() argument 52 lsf2 = lsf + length; in WebRtcIlbcfix_SimpleInterpolateLsf() 67 WebRtcIlbcfix_LsfInterpolate2PloyEnc(lp, lsfold, lsf, in WebRtcIlbcfix_SimpleInterpolateLsf() 87 WebRtcIlbcfix_LsfInterpolate2PloyEnc(lp, lsf, lsf2, in WebRtcIlbcfix_SimpleInterpolateLsf() 113 WebRtcIlbcfix_LsfInterpolate2PloyEnc(lp, lsfold, lsf, in WebRtcIlbcfix_SimpleInterpolateLsf() 125 WEBRTC_SPL_MEMCPY_W16(lsfold, lsf, length); in WebRtcIlbcfix_SimpleInterpolateLsf()
|
D | lpc_encode.c | 41 int16_t lsf[LPC_FILTERORDER * LPC_N_MAX]; in WebRtcIlbcfix_LpcEncode() local 45 WebRtcIlbcfix_SimpleLpcAnalysis(lsf, data, iLBCenc_inst); in WebRtcIlbcfix_LpcEncode() 48 WebRtcIlbcfix_SimpleLsfQ(lsfdeq, lsf_index, lsf, iLBCenc_inst->lpc_n); in WebRtcIlbcfix_LpcEncode() 56 lsf, lsfdeq, iLBCenc_inst->lsfold, in WebRtcIlbcfix_LpcEncode()
|
D | unpack_bits.c | 37 enc_bits->lsf[0] = (*bitstreamPtr)>>10; /* Bit 0..5 */ in WebRtcIlbcfix_UnpackBits() 38 enc_bits->lsf[1] = ((*bitstreamPtr)>>3)&0x7F; /* Bit 6..12 */ in WebRtcIlbcfix_UnpackBits() 39 enc_bits->lsf[2] = ((*bitstreamPtr)&0x7)<<4; /* Bit 13..15 */ in WebRtcIlbcfix_UnpackBits() 42 enc_bits->lsf[2] |= ((*bitstreamPtr)>>12)&0xF; /* Bit 0..3 */ in WebRtcIlbcfix_UnpackBits() 59 enc_bits->lsf[3] = ((*bitstreamPtr)>>6)&0x3F; /* Bit 4..9 */ in WebRtcIlbcfix_UnpackBits() 60 enc_bits->lsf[4] = ((*bitstreamPtr)<<1)&0x7E; /* Bit 10..15 */ in WebRtcIlbcfix_UnpackBits() 63 enc_bits->lsf[4] |= ((*bitstreamPtr)>>15)&0x1; /* Bit 0 */ in WebRtcIlbcfix_UnpackBits() 64 enc_bits->lsf[5] = ((*bitstreamPtr)>>8)&0x7F; /* Bit 1..7 */ in WebRtcIlbcfix_UnpackBits()
|
D | pack_bits.c | 38 (*bitstreamPtr) = ((uint16_t)enc_bits->lsf[0])<<10; /* Bit 0..5 */ in WebRtcIlbcfix_PackBits() 39 (*bitstreamPtr) |= (enc_bits->lsf[1])<<3; /* Bit 6..12 */ in WebRtcIlbcfix_PackBits() 40 (*bitstreamPtr) |= (enc_bits->lsf[2]&0x70)>>4; /* Bit 13..15 */ in WebRtcIlbcfix_PackBits() 43 (*bitstreamPtr) = ((uint16_t)enc_bits->lsf[2]&0xF)<<12; /* Bit 0..3 */ in WebRtcIlbcfix_PackBits() 60 (*bitstreamPtr) |= (enc_bits->lsf[3])<<6; /* Bit 4..9 */ in WebRtcIlbcfix_PackBits() 61 (*bitstreamPtr) |= (enc_bits->lsf[4]&0x7E)>>1; /* Bit 10..15 */ in WebRtcIlbcfix_PackBits() 64 (*bitstreamPtr) = ((uint16_t)enc_bits->lsf[4]&0x1)<<15; /* Bit 0 */ in WebRtcIlbcfix_PackBits() 65 (*bitstreamPtr) |= (enc_bits->lsf[5])<<8; /* Bit 1..7 */ in WebRtcIlbcfix_PackBits()
|
D | simple_lsf_quant.c | 31 int16_t *lsf, /* (i) the lsf coefficient vector to be in WebRtcIlbcfix_SimpleLsfQ() argument 37 WebRtcIlbcfix_SplitVq( lsfdeq, index, lsf, in WebRtcIlbcfix_SimpleLsfQ() 43 lsf + LPC_FILTERORDER, (int16_t*)WebRtcIlbcfix_kLsfCb, in WebRtcIlbcfix_SimpleLsfQ()
|
D | poly_to_lsf.c | 25 int16_t *lsf, /* (o) lsf coefficients (Q13) */ in WebRtcIlbcfix_Poly2Lsf() argument 30 WebRtcIlbcfix_Lsp2Lsf(lsp, lsf, 10); in WebRtcIlbcfix_Poly2Lsf()
|
D | lsf_to_lsp.c | 27 int16_t *lsf, /* (i) lsf in Q13 values between 0 and pi */ in WebRtcIlbcfix_Lsf2Lsp() argument 39 freq = (int16_t)((lsf[i] * 20861) >> 15); in WebRtcIlbcfix_Lsf2Lsp()
|
D | lsp_to_lsf.c | 28 int16_t *lsf, /* (o) Lsf vector 0...Pi in Q13 in WebRtcIlbcfix_Lsp2Lsf() argument 48 lsfPtr = &lsf[9]; in WebRtcIlbcfix_Lsp2Lsf()
|
D | lsf_to_poly.c | 26 int16_t *lsf /* (i) line spectral frequencies in Q13 */ in WebRtcIlbcfix_Lsf2Poly() argument 37 WebRtcIlbcfix_Lsf2Lsp(lsf, lsp, LPC_FILTERORDER); in WebRtcIlbcfix_Lsf2Poly()
|
D | simple_lpc_analysis.c | 30 int16_t *lsf, /* (o) lsf coefficients */ in WebRtcIlbcfix_SimpleLpcAnalysis() argument 86 WebRtcIlbcfix_Poly2Lsf(lsf + k*LPC_FILTERORDER, A); in WebRtcIlbcfix_SimpleLpcAnalysis()
|
D | poly_to_lsf.h | 29 int16_t *lsf, /* (o) lsf coefficients (Q13) */
|
D | lsf_to_poly.h | 30 int16_t *lsf /* (i) line spectral frequencies in Q13 */
|
D | lsf_check.h | 29 int16_t *lsf, /* LSF parameters */
|
D | lsf_to_lsp.h | 29 int16_t *lsf, /* (i) lsf in Q13 values between 0 and pi */
|
D | lsp_to_lsf.h | 30 int16_t *lsf, /* (o) Lsf vector 0...Pi in Q13
|
D | simple_lpc_analysis.h | 29 int16_t *lsf, /* (o) lsf coefficients */
|
D | simple_lsf_quant.h | 32 int16_t *lsf, /* (i) the lsf coefficient vector to be
|
D | simple_interpolate_lsf.h | 35 int16_t *lsf, /* (i) the unquantized lsf coefficients Q13 */
|
D | defines.h | 121 int16_t lsf[LSF_NSPLIT*LPC_N_MAX]; member
|
D | decode.c | 97 WebRtcIlbcfix_SimpleLsfDeQ(lsfdeq, (int16_t*)(iLBCbits_inst->lsf), iLBCdec_inst->lpc_n); in WebRtcIlbcfix_DecodeImpl()
|
D | encode.c | 131 WebRtcIlbcfix_LpcEncode(syntdenum, weightdenum, iLBCbits_inst->lsf, data, in WebRtcIlbcfix_EncodeImpl()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/ |
D | NonLinearConjugateGradientOptimizer.java | 163 final UnivariateRealFunction lsf = new LineSearchFunction(searchDirection); in doOptimize() local 164 final double step = solver.solve(lsf, 0, findUpperBound(lsf, 0, initialStep)); in doOptimize()
|
/external/apache-http/src/org/apache/http/impl/conn/ |
D | DefaultClientConnectionOperator.java | 238 final LayeredSocketFactory lsf = (LayeredSocketFactory) schm.getSocketFactory(); in updateSecureConnection() local 241 sock = lsf.createSocket in updateSecureConnection() 247 conn.update(sock, target, lsf.isSecure(sock), params); in updateSecureConnection()
|
/external/lisa/ipynb/tutorial/ |
D | 06_TraceAnalysis.ipynb | 1104 …rufFHd/KfZ+Utz9lW7sM774\nUWzE9AHn3BE97HMXXHABVVVVAJSXlzNlypSOF9c+LKxtbWtb2+lsf+HPX+C1Ya8B0LyqmfxwP…
|