Lines Matching defs:cb_index
80 int16_t cb_index[CB_NSTAGES*(NASUB_MAX + 1)];
144 frame->cb_index[0] = get_bits(gb, 6) << 1;
147 frame->cb_index[3] = get_bits(gb, 7) << 1;
158 frame->cb_index[0] = get_bits(gb, 4) << 3;
161 frame->cb_index[3] = get_bits(gb, 6) << 2;
182 frame->cb_index[0] |= get_bits(gb, 2) << 1;
185 frame->cb_index[3] |= get_bits1(gb) << 1;
186 frame->cb_index[6] = get_bits1(gb) << 7;
187 frame->cb_index[6] |= get_bits(gb, 6) << 1;
188 frame->cb_index[9] = get_bits(gb, 7) << 1;
189 frame->cb_index[12] = get_bits(gb, 3) << 5;
190 frame->cb_index[12] |= get_bits(gb, 4) << 1;
206 frame->cb_index[0] |= get_bits1(gb);
207 frame->cb_index[1] = get_bits(gb, 7);
208 frame->cb_index[2] = get_bits(gb, 6) << 1;
209 frame->cb_index[2] |= get_bits1(gb);
213 frame->cb_index[3] |= get_bits1(gb);
214 frame->cb_index[4] = get_bits(gb, 6) << 1;
215 frame->cb_index[4] |= get_bits1(gb);
216 frame->cb_index[5] = get_bits(gb, 7);
217 frame->cb_index[6] = get_bits(gb, 8);
218 frame->cb_index[7] = get_bits(gb, 8);
219 frame->cb_index[8] = get_bits(gb, 8);
229 frame->cb_index[0] |= get_bits1(gb);
230 frame->cb_index[1] = get_bits(gb, 7);
231 frame->cb_index[2] = get_bits(gb, 4) << 3;
232 frame->cb_index[2] |= get_bits(gb, 3);
236 frame->cb_index[3] |= get_bits1(gb);
237 frame->cb_index[4] = get_bits(gb, 4) << 3;
238 frame->cb_index[4] |= get_bits(gb, 3);
239 frame->cb_index[5] = get_bits(gb, 7);
240 frame->cb_index[6] |= get_bits1(gb);
241 frame->cb_index[7] = get_bits(gb, 5) << 3;
242 frame->cb_index[7] |= get_bits(gb, 3);
243 frame->cb_index[8] = get_bits(gb, 8);
244 frame->cb_index[9] |= get_bits1(gb);
245 frame->cb_index[10] = get_bits(gb, 4) << 4;
246 frame->cb_index[10] |= get_bits(gb, 4);
247 frame->cb_index[11] = get_bits(gb, 8);
248 frame->cb_index[12] |= get_bits1(gb);
249 frame->cb_index[13] = get_bits(gb, 3) << 5;
250 frame->cb_index[13] |= get_bits(gb, 5);
251 frame->cb_index[14] = get_bits(gb, 8);
796 construct_vector(&decresidual[start_pos + s->state_short_len], encbits->cb_index, encbits->gain_index, mem + CB_MEML - ST_MEM_L_TBL, ST_MEM_L_TBL, (int16_t) diff);
805 construct_vector(reverseDecresidual, encbits->cb_index, encbits->gain_index, mem + CB_MEML - ST_MEM_L_TBL, ST_MEM_L_TBL, diff);
825 construct_vector(&decresidual[(encbits->start + 1 + subframe) * SUBL], encbits->cb_index + subcount * CB_NSTAGES, encbits->gain_index + subcount * CB_NSTAGES, mem, MEM_LF_TBL, SUBL);
852 construct_vector(&reverseDecresidual[subframe * SUBL], encbits->cb_index + subcount * CB_NSTAGES,
1381 index_conv(s->frame.cb_index);