Home
last modified time | relevance | path

Searched refs:PREV (Results 1 – 3 of 3) sorted by relevance

/external/pdfium/core/src/fxcodec/jbig2/
DJBig2_ArithIntDecoder.cpp56 int PREV = 1; in decode() local
57 const int S = pArithDecoder->DECODE(&m_IAx[PREV]); in decode()
58 PREV = ShiftOr(PREV, S); in decode()
61 RecursiveDecode(pArithDecoder, &m_IAx, &PREV, 0); in decode()
65 int D = pArithDecoder->DECODE(&m_IAx[PREV]); in decode()
66 PREV = ShiftOr(PREV, D); in decode()
67 if (PREV >= 256) in decode()
68 PREV = (PREV & 511) | 256; in decode()
90 int PREV = 1; in decode() local
92 JBig2ArithCtx* pCX = &m_IAID[PREV]; in decode()
[all …]
/external/clang/lib/Basic/
DDiagnosticIDs.cpp126 #define CATEGORY(NAME, PREV) \ in GetDiagInfo() argument
128 Offset += NUM_BUILTIN_##PREV##_DIAGNOSTICS - DIAG_START_##PREV - 1; \ in GetDiagInfo()
129 ID -= DIAG_START_##NAME - DIAG_START_##PREV; \ in GetDiagInfo()
/external/libxml2/
Dxmlregexp.c64 #define PREV (ctxt->cur[-1]) macro
5020 if ((start == '-') && (NXT(1) != ']') && (PREV != '[') && (PREV != '^')) { in xmlFAParseCharRange()