HomeSort by relevance Sort by last modified time
    Searched defs:lag (Results 1 - 25 of 30) sorted by null

1 2

  /development/tools/axl/
chewie.py 30 ## pull out request lag -- queue to start to done
31 def lag(): function
184 if __name__ == '__main__': lag()
  /external/libopus/silk/
decode_pitch.c 46 opus_int lag, k, min_lag, max_lag, cbk_size; local
71 lag = min_lag + lagIndex;
74 pitch_lags[ k ] = lag + matrix_ptr( Lag_CB_ptr, k, contourIndex, cbk_size );
decode_core.c 46 opus_int i, k, lag = 0, start_idx, sLTP_buf_idx, NLSF_interpolation_flag, signalType; local
138 lag = psDecCtrl->pitchL[ k ];
143 start_idx = psDec->ltp_mem_length - lag - psDec->LPC_order - LTP_ORDER / 2;
158 for( i = 0; i < lag + LTP_ORDER/2; i++ ) {
164 for( i = 0; i < lag + LTP_ORDER/2; i++ ) {
174 pred_lag_ptr = &sLTP_Q15[ sLTP_buf_idx - lag + LTP_ORDER / 2 ];
NSQ.c 47 const opus_int pitchL[ MAX_NB_SUBFR ], /* I Pitch lag */
62 opus_int lag, /* I Pitch lag */
95 opus_int k, lag, start_idx, LSF_interpolation_flag; local
107 /* Set unvoiced lag to the previous one, overwrite later for voiced */
108 lag = NSQ->lagPrev;
140 lag = pitchL[ k ];
145 start_idx = psEncC->ltp_mem_length - lag - psEncC->predictLPCOrder - LTP_ORDER / 2;
159 AR_shp_Q13, lag, HarmShapeFIRPacked_Q14, Tilt_Q14[ k ], LF_shp_Q14[ k ], Gains_Q16[ k ], Lambda_Q10,
193 opus_int lag, /* I Pitch lag *
382 opus_int i, lag; local
    [all...]
PLC.c 202 opus_int lag, idx, sLTP_buf_idx, shift1, shift2; local
289 lag = silk_RSHIFT_ROUND( psPLC->pitchL_Q8, 8 );
293 idx = psDec->ltp_mem_length - lag - psDec->LPC_order - LTP_ORDER / 2;
308 pred_lag_ptr = &sLTP_Q14[ sLTP_buf_idx - lag + LTP_ORDER / 2 ];
336 /* Slowly increase pitch lag */
339 lag = silk_RSHIFT_ROUND( psPLC->pitchL_Q8, 8 );
386 psDecCtrl->pitchL[ i ] = lag;
NSQ_del_dec.c 79 const opus_int pitchL[ MAX_NB_SUBFR ], /* I Pitch lag */
99 opus_int lag, /* I Pitch lag */
135 opus_int i, k, lag, start_idx, LSF_interpolation_flag, Winner_ind, subfr; local
150 /* Set unvoiced lag to the previous one, overwrite later for voiced */
151 lag = NSQ->lagPrev;
175 /* For voiced frames limit the decision delay to lower than the pitch lag */
181 if( lag > 0 ) {
182 decisionDelay = silk_min_int( decisionDelay, lag - LTP_ORDER / 2 - 1 );
214 lag = pitchL[ k ]
668 opus_int i, k, lag; local
    [all...]
  /external/libopus/silk/float/
corrMatrix_FLP.c 43 const opus_int Order, /* I Max lag for correlation */
47 opus_int lag; local
51 for( lag = 0; lag < Order; lag++ ) {
52 /* Calculate X[:,lag]'*t */
53 Xt[ lag ] = (silk_float)silk_inner_product_FLP( ptr1, t, L );
62 const opus_int Order, /* I Max lag for correlation */
66 opus_int j, lag; local
80 for( lag = 1; lag < Order; lag++ )
    [all...]
pitch_analysis_core_FLP.c 48 opus_int start_lag, /* I start lag */
58 opus_int start_lag, /* I start lag */
69 opus_int *pitch_out, /* O Pitch lag values [nb_subfr] */
70 opus_int16 *lagIndex, /* O Lag Index */
73 opus_int prevLag, /* I Last lag of previous frame; set to zero is unvoiced */
74 const silk_float search_thres1, /* I First stage threshold for lag candidates 0 - 1 */
75 const silk_float search_thres2, /* I Final threshold for lag candidates 0 - 1 */
98 opus_int CBimax, CBimax_new, lag, start_lag, end_lag, lag_new; local
121 /* Set up frame lengths max / min lag for the sampling frequency */
211 /* Apply short-lag bias *
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
get_cd_vec.c 35 size_t lag; local
59 /* Calculate lag */
63 lag = k / 2;
65 WebRtcIlbcfix_CreateAugmentedVec(lag, mem+lMem, cbvec);
105 /* Calculate lag index */
106 lag = (cbveclen<<1)-20+index-base_size-lMem-1;
108 WebRtcIlbcfix_CreateAugmentedVec(lag, tempbuff2+SUBL+5, cbvec);
decode.c 191 size_t lag; local
193 /* Find last lag (since the enhancer is not called to give this info) */
194 lag = 20;
196 lag = WebRtcIlbcfix_XcorrCoef(
198 &decresidual[iLBCdec_inst->blockl-60-lag],
200 80, lag, -1);
202 lag = WebRtcIlbcfix_XcorrCoef(
204 &decresidual[iLBCdec_inst->blockl-ENH_BLOCKL-lag],
206 100, lag, -1);
209 /* Store lag (it is needed if next packet is lost) *
    [all...]
do_plc.c 36 size_t inlag, /* (i) pitch lag */
44 size_t j, lag, randlag; local
85 /* Search around the previous lag +/-3 to find the
87 lag = inlag - 3;
93 iLBCdec_inst->prevResidual, lag, iLBCdec_inst->blockl, corrLen, scale3);
106 this lag is better or not. To avoid the division,
131 /* New lag is better => record lag, measure and domain */
132 lag = j;
140 /* Calculate the periodicity for the lag with the maximum correlation
    [all...]
enhancer_interface.c 33 size_t WebRtcIlbcfix_EnhancerInterface( /* (o) Estimated lag in end of in[] */
39 size_t lag=20, tlag=20; local
174 lag = lagmax[ind] + 10;
176 /* Store the estimated lag in the non-downsampled domain */
177 enh_period[ENH_NBLOCKS_TOT - new_blocks + iblock] = lag * 8;
179 /* Store the estimated lag for backward PLC */
182 tlag = lag * 2;
186 tlag = lag * 2;
190 lag *= 2;
195 /* Calculate the best lag of the new fram
349 lag); local
360 lag); local
    [all...]
  /external/libopus/silk/fixed/
corrMatrix_FIX.c 43 const opus_int order, /* I Max lag for correlation */
49 opus_int lag, i; local
58 for( lag = 0; lag < order; lag++ ) {
63 Xt[ lag ] = inner_prod; /* X[:,lag]'*t */
68 for( lag = 0; lag < order; lag++ )
86 opus_int i, j, lag; local
    [all...]
pitch_analysis_core_FIX.c 62 opus_int start_lag, /* I lag offset to search around */
72 opus_int start_lag, /* I lag offset to search around */
84 opus_int *pitch_out, /* O 4 pitch lag values */
85 opus_int16 *lagIndex, /* O Lag Index */
88 opus_int prevLag, /* I Last lag of previous frame; set to zero is unvoiced */
89 const opus_int32 search_thres1_Q16, /* I First stage threshold for lag candidates 0 - 1 */
90 const opus_int search_thres2_Q13, /* I Final threshold for lag candidates 0 - 1 */
110 opus_int CBimax, CBimax_new, CBimax_old, lag, start_lag, end_lag, lag_new; local
134 /* Set up frame lengths max / min lag for the sampling frequency */
233 /* Combine two subframes into single correlation measure and apply short-lag bias *
    [all...]
  /external/libxaac/decoder/
ixheaacd_lt_predict.h 32 UWORD16 lag; member in struct:__anon26572
  /external/jemalloc/test/src/
SFMT.c 643 int lag; local
655 lag = 11;
657 lag = 7;
659 lag = 5;
661 lag = 3;
663 mid = (size - lag) / 2;
675 psfmt32[idxof(mid + lag)] += r;
684 psfmt32[idxof((i + mid + lag) % N32)] += r;
693 psfmt32[idxof((i + mid + lag) % N32)] += r;
702 psfmt32[idxof((i + mid + lag) % N32)] ^= r
    [all...]
  /external/okhttp/okio/benchmarks/src/main/java/com/squareup/okio/benchmarks/
BufferPerformanceBench.java 222 public void lag() throws InterruptedException { method in class:BufferPerformanceBench.ColdBuffers
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
filter_functions.c 99 size_t lag, n; local
103 for (lag = 0; lag <= order; lag++)
106 x_lag = &x[lag];
108 for (n = 1; n < N - lag; n++) {
113 r[lag] = sum;
pitch_filter.c 23 * y(z) = x(z) + damper(z) * gain * (x(z) + y(z)) * z ^ (-lag);
26 * y(z) = x(z) - damper(z) * gain * (x(z) + y(z)) * z ^ (-lag);
28 * Note that |lag| is a floating number so we perform an interpolation to
29 * obtain the correct |lag|.
93 * lag : pitch-lag for the current segment of input.
94 * lag_offset : the offset of lag w.r.t. current sample.
109 double lag; member in struct:__anon44061
145 /* Index of |parameters->buffer| where samples are read for fractional-lag
218 /* Compute integer lag-offset. *
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
pitch_fr.cpp 47 Description: *lag-- decrements the pointer. (*lag)-- decrements what is
128 Word16 max_frac_lag; /* lag up to which fractional lags are used */
132 Word16 delta_int_low; /* integer lag below TO to start search from */
448 lag = pointer to integer pitch of type Word16
475 fractional positions around lag T0. The position at which the
494 Word16 *lag, // i/o : integer pitch
510 max = Interpol_3or6 (&corr[*lag], *frac, flag3); // function result
513 corr_int = Interpol_3or6 (&corr[*lag], i, flag3);
525 *lag = sub (*lag, 1)
1385 Word16 lag; local
    [all...]
  /frameworks/base/tests/touchlag/
touchlag.cpp 202 void get(int lag, int* x, int* y) {
203 const int i = (index - lag) & 0xF;
216 printf("\nusage: %s [-h] [-l lag]\n", name);
223 int lag = 0; local
238 lag = atoi(optarg);
265 if (lag) {
278 queue.get(lag, &lag_x, &lag_y);
280 if (lag) {
  /toolchain/binutils/binutils-2.27/binutils/
mclex.c 246 const wind_language_t *lag = wind_find_language_by_id ((unsigned) nv); local
248 if (lag == NULL)
250 memcpy (&c->lang_info, lag, sizeof (*lag));
267 const wind_language_t *lag = wind_find_language_by_id ((unsigned) nv); local
268 if (lag == NULL)
270 memcpy (&n->lang_info, lag, sizeof (*lag));
  /external/libopus/celt/
pitch.c 191 /* Lag windowing */
295 int lag; local
311 lag = len+max_pitch;
314 ALLOC(y_lp4, lag>>2, opus_val16);
320 for (j=0;j<lag>>2;j++)
325 ymax = celt_maxabs16(y_lp4, lag>>2);
331 for (j=0;j<lag>>2;j++)
  /external/libopus/silk/x86/
NSQ_sse.c 49 const opus_int pitchL[ MAX_NB_SUBFR ], /* I Pitch lag */
63 opus_int lag, /* I Pitch lag */
91 opus_int k, lag, start_idx, LSF_interpolation_flag; local
108 /* Set unvoiced lag to the previous one, overwrite later for voiced */
109 lag = NSQ->lagPrev;
196 lag = pitchL[ k ];
201 start_idx = psEncC->ltp_mem_length - lag - psEncC->predictLPCOrder - LTP_ORDER / 2;
217 AR_shp_Q13, lag, HarmShapeFIRPacked_Q14, Tilt_Q14[ k ], LF_shp_Q14[ k ], Gains_Q16[ k ],
223 AR_shp_Q13, lag, HarmShapeFIRPacked_Q14, Tilt_Q14[ k ], LF_shp_Q14[ k ], Gains_Q16[ k ], Lambda_Q10
616 opus_int i, lag; local
    [all...]
  /external/aac/libAACenc/src/
aacenc_tns.cpp 544 Calculate autocorellation value for one lag
549 \param lag to be calculated
550 \param scaling of the lag
556 const INT lag,
563 if (lag == 0) {
568 for (i = startLine; i < (stopLine - lag); i++) {
569 result += (fMult(spectrum[i], spectrum[i + lag]) >> scale);
625 int i, idx0, idx1, idx2, idx3, idx4, lag; local
670 /* compute autocorrelation value at lag zero, i. e. energy, for each quarter
686 for (lag = 1; lag <= maxOrder; lag++)
    [all...]

Completed in 816 milliseconds

1 2