Home
last modified time | relevance | path

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

/external/pdfium/core/fxcodec/jbig2/
DJBig2_ArithDecoder.cpp68 int CJBig2_ArithDecoder::Decode(JBig2ArithCtx* pCX) { in Decode() argument
69 DCHECK(pCX); in Decode()
70 DCHECK_LT(pCX->I(), std::size(kQeTable)); in Decode()
72 const JBig2ArithCtx::JBig2ArithQe& qe = kQeTable[pCX->I()]; in Decode()
76 return pCX->MPS(); in Decode()
78 const int D = m_A < qe.Qe ? pCX->DecodeNLPS(qe) : pCX->DecodeNMPS(qe); in Decode()
84 const int D = m_A < qe.Qe ? pCX->DecodeNMPS(qe) : pCX->DecodeNLPS(qe); in Decode()
DJBig2_ArithIntDecoder.cpp36 JBig2ArithCtx* pCX = &(*context)[*prev]; in RecursiveDecode() local
37 int D = decoder->Decode(pCX); in RecursiveDecode()
100 JBig2ArithCtx* pCX = &m_IAID[PREV]; in Decode() local
101 int D = pArithDecoder->Decode(pCX); in Decode()
DJBig2_ArithDecoder.h44 int Decode(JBig2ArithCtx* pCX);