Lines Matching defs:u4_code
177 UWORD32 u4_code;
178 GETBIT(u4_code, *pu4_bitstrm_ofst, pu4_bitstrm_buf);
179 return (!u4_code);
622 UWORD32 u4_code;
624 NEXTBITS(u4_code, u4_bitstream_offset, pu4_bitstrm_buf, 3);
626 if(u4_code != 0)
629 u4_run = (7 - u4_code);
634 FIND_ONE_IN_STREAM_LEN(u4_code, u4_bitstream_offset,
636 u4_run = (4 + u4_code);
651 UWORD32 u4_code;
652 NEXTBITS(u4_code, u4_bitstream_offset, pu4_bitstrm_buf, 3);
654 u4_code = pu1_table_runbefore[u4_code + (u4_zeroes_left << 3)];
655 u4_run = u4_code >> 2;
657 FLUSHBITS(u4_bitstream_offset, (u4_code & 0x03));
934 UWORD32 u4_code;
935 NEXTBITS(u4_code, u4_bitstream_offset, pu4_bitstrm_buf, 3);
937 u4_code = pu1_table_runbefore[u4_code + (u4_zeroes_left << 3)];
938 u4_run = u4_code >> 2;
940 FLUSHBITS(u4_bitstream_offset, (u4_code & 0x03));
1167 UWORD32 u4_code;
1168 NEXTBITS(u4_code, u4_bitstream_offset, pu4_bitstrm_buf, 3);
1170 u4_code = pu1_table_runbefore[u4_code + (u4_zeroes_left << 3)];
1171 u4_run = u4_code >> 2;
1173 FLUSHBITS(u4_bitstream_offset, (u4_code & 0x03));
1229 UWORD32 u4_code, u4_index, u4_ldz;
1244 u4_code = pu2_code[u4_index];
1246 FLUSHBITS(u4_bitstream_offset, (u4_code & 0x03));
1248 *pu4_total_coeff = (u4_code >> 4);
1256 u4_trailing_ones = ((u4_code >> 2) & 0x03);
1280 UWORD32 u4_code;
1283 GETBITS(u4_code, u4_bitstream_offset, pu4_bitstrm_buf, 6);
1287 if(u4_code != 3)
1292 *pu4_total_coeff = (u4_code >> 2) + 1;
1293 u4_trailing_ones = u4_code & 0x03;
1327 UWORD32 u4_total_coeff, u4_trailing_ones, u4_total_coeff_tone, u4_code;
1335 NEXTBITS(u4_code, u4_bitstream_offset, pu4_bitstrm_buf, 8);
1337 u4_code = pu1_cav_chromdc[u4_code];
1339 FLUSHBITS(u4_bitstream_offset, ((u4_code & 0x7) + 1));
1342 u4_total_coeff = (u4_code >> 5);
1357 u4_trailing_ones = ((u4_code >> 3) & 0x3);
1397 NEXTBITS(u4_code, u4_bitstream_offset, pu4_bitstrm_buf, 8);
1399 u4_code = pu1_cav_chromdc[u4_code];
1401 FLUSHBITS(u4_bitstream_offset, ((u4_code & 0x7) + 1));
1404 u4_total_coeff = (u4_code >> 5);
1419 u4_trailing_ones = ((u4_code >> 3) & 0x3);