Home
last modified time | relevance | path

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

/external/pdfium/core/fxcodec/jbig2/
DJBig2_SddProc.cpp313 JBig2HuffmanCode* SBSYMCODES; in decode_Huffman() local
384 SBSYMCODES = FX_Alloc(JBig2HuffmanCode, SBNUMSYMS); in decode_Huffman()
390 SBSYMCODES[I].codelen = nTmp; in decode_Huffman()
391 SBSYMCODES[I].code = I; in decode_Huffman()
393 pDecoder->SBSYMCODES = SBSYMCODES; in decode_Huffman()
440 FX_Free(SBSYMCODES); in decode_Huffman()
444 FX_Free(SBSYMCODES); in decode_Huffman()
453 SBSYMCODES = FX_Alloc(JBig2HuffmanCode, SBNUMSYMS); in decode_Huffman()
455 SBSYMCODES[I].codelen = SBSYMCODELEN; in decode_Huffman()
456 SBSYMCODES[I].code = I; in decode_Huffman()
[all …]
DJBig2_Context.cpp727 std::unique_ptr<JBig2HuffmanCode, FxFreeDeleter> SBSYMCODES; in parseTextRegion() local
729 SBSYMCODES.reset( in parseTextRegion()
731 if (!SBSYMCODES) in parseTextRegion()
735 pTRD->SBSYMCODES = SBSYMCODES.get(); in parseTextRegion()
1266 std::unique_ptr<JBig2HuffmanCode, FxFreeDeleter> SBSYMCODES( in decodeSymbolIDHuffmanTable() local
1290 SBSYMCODES.get()[i].codelen = runcode; in decodeSymbolIDHuffmanTable()
1310 SBSYMCODES.get()[i + k].codelen = SBSYMCODES.get()[i - 1].codelen; in decodeSymbolIDHuffmanTable()
1312 SBSYMCODES.get()[i + k].codelen = 0; in decodeSymbolIDHuffmanTable()
1320 huffman_assign_code(SBSYMCODES.get(), SBNUMSYMS); in decodeSymbolIDHuffmanTable()
1321 return SBSYMCODES.release(); in decodeSymbolIDHuffmanTable()
[all …]
DJBig2_TrdProc.h58 JBig2HuffmanCode* SBSYMCODES; variable
DJBig2_Context.h87 void huffman_assign_code(JBig2HuffmanCode* SBSYMCODES, int NTEMP);
DJBig2_TrdProc.cpp84 if ((nBits == SBSYMCODES[IDI].codelen) && in decode_Huffman()
85 (nVal == SBSYMCODES[IDI].code)) { in decode_Huffman()