Lines Matching defs:code
793 int code;
794 code = get_vlc2(&s->gb, s->vlcs[0][dc_index].table, 9, 2);
795 if (code < 0 || code > 16) {
802 if (code)
803 return get_xbits(&s->gb, code);
812 int code, i, j, level, val;
829 GET_VLC(code, re, &s->gb, s->vlcs[1][ac_index].table, 9, 2);
831 i += ((unsigned)code) >> 4;
832 code &= 0xf;
833 if (code) {
834 if (code > MIN_CACHE_BITS - 16)
840 level = (NEG_USR32(sign ^ cache,code) ^ sign) - sign;
843 LAST_SKIP_BITS(re, &s->gb, code);
881 int code, i, j, val, run;
893 GET_VLC(code, re, &s->gb, s->vlcs[2][ac_index].table, 9, 2);
895 run = ((unsigned) code) >> 4;
896 code &= 0xF;
897 if (code) {
899 if (code > MIN_CACHE_BITS - 16)
905 level = (NEG_USR32(sign ^ cache,code) ^ sign) - sign;
908 LAST_SKIP_BITS(re, &s->gb, code);
980 int code, i = ss, j, sign, val, run;
989 GET_VLC(code, re, &s->gb, s->vlcs[2][ac_index].table, 9, 2);
991 if (code & 0xF) {
992 run = ((unsigned) code) >> 4;
1007 run = ((unsigned) code) >> 4;
2188 /* return the 8 bit start code value and update the search
2189 state. Return -1 if no start code found */
2649 /* eof process start code */