Lines Matching defs:offset
119 int16_t offset;
1246 int offset, int duration, int channel,
1255 q->fft_coefs[q->fft_coefs_index].offset = offset;
1267 int n, offset;
1274 offset = 1;
1284 offset = 1;
1293 offset += (n - 2);
1299 offset += qdm2_get_vlc(gb, &vlc_tab_fft_tone_offset[local_int_8], 1, 2);
1300 while (offset >= (local_int_10 - 1)) {
1301 offset += (1 - (local_int_10 - 1));
1310 local_int_14 = (offset >> local_int_8);
1343 qdm2_fft_init_coefficient(q, sub_packet, offset, duration,
1346 qdm2_fft_init_coefficient(q, sub_packet, offset, duration,
1350 offset++;
1498 q->fft.complex[ch][q->fft_coefs[i].offset + 0].re += c.re;
1499 q->fft.complex[ch][q->fft_coefs[i].offset + 0].im += c.im;
1500 q->fft.complex[ch][q->fft_coefs[i].offset + 1].re -= c.re;
1501 q->fft.complex[ch][q->fft_coefs[i].offset + 1].im -= c.im;
1514 int offset, four_i;
1521 offset = q->fft_coefs[j].offset >> four_i;
1524 if (offset < q->frequency_range) {
1525 if (offset < 2)
1526 tone.cutoff = offset;
1528 tone.cutoff = (offset >= 60) ? 3 : 2;
1531 tone.complex = &q->fft.complex[ch][offset];
1532 tone.table = fft_tone_sample_table[i][q->fft_coefs[j].offset - (offset << four_i)];
1533 tone.phase = 64 * q->fft_coefs[j].phase - (offset << 8) - 128;
1534 tone.phase_shift = (2 * q->fft_coefs[j].offset + 1) << (7 - four_i);