Home | History | Annotate | Download | only in jbig2

Lines Matching defs:PREV

19     int PREV, V;
22 PREV = 1;
23 S = pArithDecoder->DECODE(IAx + PREV);
24 PREV = (PREV << 1) | S;
25 D = pArithDecoder->DECODE(IAx + PREV);
26 PREV = (PREV << 1) | D;
28 D = pArithDecoder->DECODE(IAx + PREV);
29 PREV = (PREV << 1) | D;
31 D = pArithDecoder->DECODE(IAx + PREV);
32 PREV = (PREV << 1) | D;
34 D = pArithDecoder->DECODE(IAx + PREV);
35 PREV = (PREV << 1) | D;
37 D = pArithDecoder->DECODE(IAx + PREV);
38 PREV = (PREV << 1) | D;
64 D = pArithDecoder->DECODE(IAx + PREV);
65 if(PREV < 256) {
66 PREV = (PREV << 1) | D;
68 PREV = (((PREV << 1) | D) & 511) | 256;
94 int PREV;
97 PREV = 1;
99 D = pArithDecoder->DECODE(IAID + PREV);
100 PREV = (PREV << 1) | D;
102 PREV = PREV - (1 << SBSYMCODELEN);
103 *nResult = PREV;