Lines Matching defs:position
164 static int sbc_enc_process_input_4s(int position, const uint8_t *pcm,
171 if (position < nsamples) {
173 memcpy(&X[c][SBC_X_BUFFER_SIZE - 40], &X[c][position],
175 position = SBC_X_BUFFER_SIZE - 40;
180 position -= 8;
182 int16_t *x = &X[c][position];
194 return position;
197 static int sbc_enc_process_input_8s(int position, const uint8_t *pcm,
204 if (position < nsamples) {
206 memcpy(&X[c][SBC_X_BUFFER_SIZE - 72], &X[c][position],
208 position = SBC_X_BUFFER_SIZE - 72;
211 if (position % 16 == 8) {
212 position -= 8;
215 int16_t *x = &X[c][position];
230 position -= 16;
232 int16_t *x = &X[c][position];
253 position -= 8;
255 int16_t *x = &X[c][position];
267 return position;