HomeSort by relevance Sort by last modified time
    Searched refs:ALLOC (Results 26 - 50 of 65) sorted by null

12 3

  /external/speex/libspeex/
nb_celp.c 284 ALLOC(lpc, st->lpcSize, spx_coef_t);
285 ALLOC(bw_lpc1, st->lpcSize, spx_coef_t);
286 ALLOC(bw_lpc2, st->lpcSize, spx_coef_t);
287 ALLOC(lsp, st->lpcSize, spx_lsp_t);
288 ALLOC(qlsp, st->lpcSize, spx_lsp_t);
289 ALLOC(interp_lsp, st->lpcSize, spx_lsp_t);
290 ALLOC(interp_qlsp, st->lpcSize, spx_lsp_t);
291 ALLOC(interp_lpc, st->lpcSize, spx_coef_t);
292 ALLOC(interp_qlpc, st->lpcSize, spx_coef_t);
304 ALLOC(w_sig, st->windowSize, spx_word16_t)
    [all...]
filters.c 383 ALLOC(mem, ord, spx_mem_t);
395 ALLOC(mem, ord, spx_mem_t);
412 ALLOC(mem1, ord, spx_mem_t);
413 ALLOC(mem2, ord, spx_mem_t);
448 ALLOC(a, M, spx_word16_t);
449 ALLOC(x, N+M-1, spx_word16_t);
489 ALLOC(xx1, M2+N2, spx_word16_t);
490 ALLOC(xx2, M2+N2, spx_word16_t);
707 ALLOC(iexc, 2*nsf, spx_word16_t);
  /external/libopus/celt/
mdct.c 118 ALLOC(f, N2, kiss_fft_scalar);
119 ALLOC(f2, N2, kiss_fft_scalar);
223 ALLOC(f2, N2, kiss_fft_scalar);
vq.c 175 ALLOC(y, N, celt_norm);
176 ALLOC(iy, N, int);
177 ALLOC(signx, N, opus_val16);
333 ALLOC(iy, N, int);
cwrs.c 667 ALLOC(u,_maxk+2U,opus_uint32);
682 ALLOC(u,_k+2U,opus_uint32);
692 ALLOC(u,_k+2U,opus_uint32);
pitch.c 318 ALLOC(x_lp4, len>>2, opus_val16);
319 ALLOC(y_lp4, lag>>2, opus_val16);
320 ALLOC(xcorr, max_pitch>>1, opus_val32);
428 ALLOC(yy_lookup, maxperiod+1, opus_val32);
rate.c 561 ALLOC(bits1, len, int);
562 ALLOC(bits2, len, int);
563 ALLOC(thresh, len, int);
564 ALLOC(trim_offset, len, int);
quant_bands.c 298 ALLOC(oldEBands_intra, C*m->nbEBands, opus_val16);
299 ALLOC(error_intra, C*m->nbEBands, opus_val16);
329 ALLOC(intra_bits, save_bytes, unsigned char);
  /external/libopus/silk/fixed/
prefilter_FIX.c 114 ALLOC( x_filt_Q12, psEnc->sCmn.subfr_length, opus_int32 );
115 ALLOC( st_res_Q2, psEnc->sCmn.subfr_length, opus_int32 );
encode_frame_FIX.c 126 ALLOC( res_pitch,
155 ALLOC( xfw_Q3, psEnc->sCmn.frame_length, opus_int32 );
177 ALLOC( ec_buf_copy, 1275, opus_uint8 );
find_LPC_FIX.c 87 ALLOC( LPC_res, 2 * subfr_length, opus_int16 );
find_pitch_lags_FIX.c 72 ALLOC( Wsig, psEnc->sCmn.pitch_LPC_win_length, opus_int16 );
solve_LS_FIX.c 89 ALLOC( L_Q16, M * M, opus_int32 );
  /external/mksh/src/
exec.c 115 dp = alloc(z * 2 + n + 1, APERM);
792 if (tp->flag & ALLOC) {
793 tp->flag &= ~ALLOC;
1046 if (tp->flag & ALLOC) {
1047 tp->flag &= ~(ISSET|ALLOC);
1058 tp->flag |= (ISSET|ALLOC);
1141 if (tp->flag & ALLOC) {
1142 tp->flag &= ~ALLOC;
1170 tp->flag |= ISSET|ALLOC;
1203 if (tp->flag&ALLOC) {
    [all...]
  /external/libopus/silk/
control_codec.c 166 ALLOC( x_bufFIX, silk_max( old_buf_samples, new_buf_samples ),
172 ALLOC( temp_resampler_state, 1, silk_resampler_state_struct );
179 ALLOC( x_buf_API_fs_Hz, api_buf_samples, opus_int16 );
NSQ_del_dec.c 148 ALLOC( psDelDec, psEncC->nStatesDelayedDecision, NSQ_del_dec_struct );
183 ALLOC( sLTP_Q15,
185 ALLOC( sLTP, psEncC->ltp_mem_length + psEncC->frame_length, opus_int16 );
186 ALLOC( x_sc_Q10, psEncC->subfr_length, opus_int32 );
187 ALLOC( delayedGain_Q10, DECISION_DELAY, opus_int32 );
348 ALLOC( psSampleState, nStatesDelayedDecision, NSQ_sample_pair );
    [all...]
NSQ.c 114 ALLOC( sLTP_Q15,
116 ALLOC( sLTP, psEncC->ltp_mem_length + psEncC->frame_length, opus_int16 );
117 ALLOC( x_sc_Q10, psEncC->subfr_length, opus_int32 );
PLC.c 190 ALLOC( exc_buf, 2*psPLC->subfr_length, opus_int16 );
191 ALLOC( sLTP, psDec->ltp_mem_length, opus_int16 );
192 ALLOC( sLTP_Q14, psDec->ltp_mem_length + psDec->frame_length, opus_int32 );
dec_API.c 254 ALLOC( samplesOut1_tmp_storage,
307 ALLOC( samplesOut2_tmp,
CNG.c 129 ALLOC( CNG_sig_Q10, length + MAX_LPC_ORDER, opus_int32 );
resampler_private_down_FIR.c 159 ALLOC( buf, S->batchSize + S->FIR_Order, opus_int32 );
  /external/libopus/src/
opus_decoder.c 312 ALLOC(pcm_transition_celt, pcm_transition_celt_size, opus_val16);
329 ALLOC(pcm_silk, pcm_silk_size, opus_int16);
448 ALLOC(pcm_transition_silk, pcm_transition_silk_size, opus_val16);
458 ALLOC(redundant_audio, redundant_audio_size, opus_val16);
720 ALLOC(out, frame_size*st->channels, opus_int16);
748 ALLOC(out, frame_size*st->channels, float);
opus_multistream_encoder.c 245 ALLOC(in, frame_size+overlap, opus_val32);
246 ALLOC(x, len, opus_val16);
247 ALLOC(freq, frame_size, opus_val32);
740 ALLOC(buf, 2*frame_size, opus_val16);
744 ALLOC(bandSMR, 21*st->layout.nb_channels, opus_val16);
    [all...]
analysis.c 249 ALLOC(in, 480, kiss_fft_cpx);
250 ALLOC(out, 480, kiss_fft_cpx);
251 ALLOC(tonality, 240, float);
252 ALLOC(noisiness, 240, float);
  /external/zlib/src/contrib/minizip/
unzip.c 111 #ifndef ALLOC
112 # define ALLOC(size) (malloc(size))
430 buf = (unsigned char*)ALLOC(BUFREADCOMMENT+4);
498 buf = (unsigned char*)ALLOC(BUFREADCOMMENT+4);
755 s=(unz64_s*)ALLOC(sizeof(unz64_s));
    [all...]

Completed in 385 milliseconds

12 3