Home
last modified time | relevance | path

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

/external/pdfium/core/fxcodec/jbig2/
DJBig2_ArithIntDecoder.cpp55 int PREV = 1; in decode() local
56 const int S = pArithDecoder->DECODE(&m_IAx[PREV]); in decode()
57 PREV = ShiftOr(PREV, S); in decode()
60 RecursiveDecode(pArithDecoder, &m_IAx, &PREV, 0); in decode()
64 int D = pArithDecoder->DECODE(&m_IAx[PREV]); in decode()
65 PREV = ShiftOr(PREV, D); in decode()
66 if (PREV >= 256) in decode()
67 PREV = (PREV & 511) | 256; in decode()
97 int PREV = 1; in decode() local
99 JBig2ArithCtx* pCX = &m_IAID[PREV]; in decode()
[all …]
/external/python/cpython3/Lib/
Dfunctools.py489 PREV, NEXT, KEY, RESULT = 0, 1, 2, 3 # names for the link fields
536 link_next[PREV] = link_prev
537 last = root[PREV]
538 last[NEXT] = root[PREV] = link
539 link[PREV] = last
574 last = root[PREV]
576 last[NEXT] = root[PREV] = cache[key] = link
/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/oj-libjdwp/src/share/back/
DeventHandler.c171 #define PREV(node) (PRIVATE_DATA(node)->private_prev) macro
194 PREV(node) = NULL; in insert()
197 PREV(oldHead) = node; in insert()
236 PREV(NEXT(node)) = PREV(node); in deinsert()
238 if (PREV(node) != NULL) { in deinsert()
239 NEXT(PREV(node)) = NEXT(node); in deinsert()
/external/libxml2/
Dxmlregexp.c64 #define PREV (ctxt->cur[-1]) macro
5032 if ((start == '-') && (NXT(1) != ']') && (PREV != '[') && (PREV != '^')) { in xmlFAParseCharRange()