Searched refs:OPUS_MOVE (Results 1 - 7 of 7) sorted by relevance

/external/libopus/celt/
H A Dos_support.h78 #define OPUS_MOVE(dst, src, n) (memmove((dst), (src), (n)*sizeof(*(dst)) + 0*((dst)-(src)) )) macro
H A Dcelt.c129 /* OPT: Happens to work without the OPUS_MOVE(), but only because the current encoder already copies x to y */
131 OPUS_MOVE(y, x, N);
164 /* OPT: Happens to work without the OPUS_MOVE(), but only because the current encoder already copies x to y */
166 OPUS_MOVE(y+overlap, x+overlap, N-overlap);
H A Dentenc.c239 OPUS_MOVE(_this->buf+_size-_this->end_offs,
H A Dcelt_decoder.c434 OPUS_MOVE(decode_mem[c], decode_mem[c]+N,
547 OPUS_MOVE(buf, buf+N, DECODE_BUFFER_SIZE-N);
927 OPUS_MOVE(decode_mem[c], decode_mem[c]+N, DECODE_BUFFER_SIZE-N+overlap/2);
H A Dcelt_encoder.c1118 OPUS_MOVE(prefilter_mem+c*COMBFILTER_MAXPERIOD, pre[c]+N, COMBFILTER_MAXPERIOD);
1120 OPUS_MOVE(prefilter_mem+c*COMBFILTER_MAXPERIOD, prefilter_mem+c*COMBFILTER_MAXPERIOD+N, COMBFILTER_MAXPERIOD-N);
1121 OPUS_MOVE(prefilter_mem+c*COMBFILTER_MAXPERIOD+COMBFILTER_MAXPERIOD-N, pre[c]+COMBFILTER_MAXPERIOD, N);
2006 OPUS_MOVE(st->syn_mem[c], st->syn_mem[c]+N, 2*MAX_PERIOD-N+overlap/2);
/external/libopus/src/
H A Drepacketizer.c214 /* Using OPUS_MOVE() instead of OPUS_COPY() in case we're doing in-place
217 OPUS_MOVE(ptr, frames[i], len[i]);
250 OPUS_MOVE(data+new_len-len, data, len);
H A Danalysis.c261 OPUS_MOVE(tonal->inmem, tonal->inmem+ANALYSIS_BUF_SIZE-240, 240);

Completed in 271 milliseconds