Home
last modified time | relevance | path

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

/external/pdfium/core/fxcodec/jbig2/
DJBig2_SddProc.cpp45 uint32_t SBNUMSYMS; in DecodeArith() local
140 pDecoder->SBNUMSYMS = SDNUMINSYMS + NSYMSDECODED; in DecodeArith()
141 SBNUMSYMS = pDecoder->SBNUMSYMS; in DecodeArith()
143 while ((uint32_t)(1 << nTmp) < SBNUMSYMS) { in DecodeArith()
148 SBSYMS.resize(SBNUMSYMS); in DecodeArith()
186 SBNUMSYMS = SDNUMINSYMS + NSYMSDECODED; in DecodeArith()
191 if (IDI >= SBNUMSYMS) in DecodeArith()
194 SBSYMS.resize(SBNUMSYMS); in DecodeArith()
278 uint32_t SBNUMSYMS; in DecodeHuffman() local
349 pDecoder->SBNUMSYMS = SDNUMINSYMS + NSYMSDECODED; in DecodeHuffman()
[all …]
DJBig2_Context.cpp627 pTRD->SBNUMSYMS = 0; in ParseTextRegion()
632 pTRD->SBNUMSYMS += pSeg->m_SymbolDict->NumImages(); in ParseTextRegion()
637 if (pTRD->SBNUMSYMS > 0) { in ParseTextRegion()
638 SBSYMS.reset(FX_Alloc(CJBig2_Image*, pTRD->SBNUMSYMS)); in ParseTextRegion()
657 DecodeSymbolIDHuffmanTable(pTRD->SBNUMSYMS); in ParseTextRegion()
665 while ((uint32_t)(1 << dwTemp) < pTRD->SBNUMSYMS) { in ParseTextRegion()
1130 uint32_t SBNUMSYMS) { in DecodeSymbolIDHuffmanTable() argument
1140 std::vector<JBig2HuffmanCode> SBSYMCODES(SBNUMSYMS); in DecodeSymbolIDHuffmanTable()
1143 while (i < static_cast<int>(SBNUMSYMS)) { in DecodeSymbolIDHuffmanTable()
1184 if (i + run > (int)SBNUMSYMS) in DecodeSymbolIDHuffmanTable()
[all …]
DJBig2_TrdProc.cpp130 for (IDI = 0; IDI < SBNUMSYMS; ++IDI) { in DecodeHuffman()
134 if (IDI < SBNUMSYMS) in DecodeHuffman()
319 if (IDI >= SBNUMSYMS) in DecodeArith()
DJBig2_TrdProc.h71 uint32_t SBNUMSYMS; variable
DJBig2_Context.h86 std::vector<JBig2HuffmanCode> DecodeSymbolIDHuffmanTable(uint32_t SBNUMSYMS);