Home | History | Annotate | Download | only in src

Lines Matching defs:idx

195     int32 mask, idx;
204 idx = index & mask;
213 dec_2p_2N1(idx, (int16)(N - 1), j, pos);
216 tmp = N << 1; /* idx = (index >> (2*N)) & mask; */
217 idx = (index >> tmp) & mask;
219 dec_1p_N1(idx, N, offset, pos + 2);
232 int32 mask, idx;
239 idx = index & mask;
248 dec_2p_2N1(idx, (int16)(N - 1), j, pos);
253 idx = (index >> (N << 1)) & mask; /* idx = (index >> (2*N)) & mask; */
254 dec_2p_2N1(idx, N, offset, pos + 2); /* dec_2p_2N1(idx, N, offset, pos+2); */
319 int32 idx;
327 tmp = (N << 1) + 1; /* idx = (index >> ((2*N)+1)); */
328 idx = index >> tmp;
334 dec_3p_3N1(idx, n_1, j, pos);
339 dec_3p_3N1(idx, n_1, offset, pos);