Lines Matching defs:a_i
544 unsigned a_i;
560 a_i = pa_aupdate_read_begin(u->a_H[c]);
561 X = u->Xs[c][a_i];
562 H = u->Hs[c][a_i];
918 unsigned a_i;
924 a_i = pa_aupdate_read_begin(u->a_H[channel]);
925 profile[0] = u->Xs[a_i][channel];
926 H = u->Hs[channel][a_i];
946 unsigned a_i;
962 a_i = pa_aupdate_read_begin(u->a_H[c]);
963 state[c * CHANNEL_PROFILE_SIZE(u)] = u->Xs[c][a_i];
964 H = u->Hs[c][a_i];
996 unsigned a_i;
1004 a_i = pa_aupdate_write_begin(u->a_H[channel]);
1005 u->Xs[channel][a_i] = profile[0];
1006 memcpy(u->Hs[channel][a_i], profile + 1, FILTER_SIZE(u) * sizeof(float));
1007 fix_filter(u->Hs[channel][a_i], u->fft_size);
1022 unsigned a_i;
1044 a_i = pa_aupdate_write_begin(u->a_H[c]);
1046 u->Xs[c][a_i] = state[c * CHANNEL_PROFILE_SIZE(u)];
1047 memcpy(u->Hs[c][a_i], H, FILTER_SIZE(u) * sizeof(float));
1117 unsigned a_i;
1300 a_i = pa_aupdate_write_begin(u->a_H[c]);
1301 H = u->Hs[c][a_i];
1302 u->Xs[c][a_i] = 1.0f;
1831 unsigned x_npoints, y_npoints, a_i;
1881 a_i = pa_aupdate_write_begin(u->a_H[r_channel]);
1882 H = u->Hs[r_channel][a_i];
1883 u->Xs[r_channel][a_i] = preamp;
1909 unsigned x_npoints, a_i;
1950 a_i = pa_aupdate_read_begin(u->a_H[r_channel]);
1951 H = u->Hs[r_channel][a_i];
1952 preamp = u->Xs[r_channel][a_i];
1971 unsigned a_i;
1974 a_i = pa_aupdate_read_begin(u->a_H[r_channel]);
1975 H = u->Hs[r_channel][a_i];
1979 *preamp = u->Xs[r_channel][a_i];
2026 unsigned a_i;
2030 a_i = pa_aupdate_write_begin(u->a_H[r_channel]);
2031 u->Xs[r_channel][a_i] = (float) preamp;
2032 H = u->Hs[r_channel][a_i];
2040 u->Xs[c][b_i] = u->Xs[r_channel][a_i];
2041 memcpy(u->Hs[c][b_i], u->Hs[r_channel][a_i], FILTER_SIZE(u) * sizeof(float));