Home | History | Annotate | Download | only in jbig2

Lines Matching defs:PREV

28                        int* prev,
34 JBig2ArithCtx* pCX = &(*context)[*prev];
36 *prev = ShiftOr(*prev, D);
39 return RecursiveDecode(decoder, context, prev, depth + 1);
55 int PREV = 1;
56 const int S = pArithDecoder->DECODE(&m_IAx[PREV]);
57 PREV = ShiftOr(PREV, S);
60 RecursiveDecode(pArithDecoder, &m_IAx, &PREV, 0);
64 int D = pArithDecoder->DECODE(&m_IAx[PREV]);
65 PREV = ShiftOr(PREV, D);
66 if (PREV >= 256)
67 PREV = (PREV & 511) | 256;
97 int PREV = 1;
99 JBig2ArithCtx* pCX = &m_IAID[PREV];
101 PREV = ShiftOr(PREV, D);
103 *nResult = PREV - (1 << SBSYMCODELEN);