Home
last modified time | relevance | path

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

/external/pdfium/core/fxcodec/jbig2/
DJBig2_Context.cpp381 auto pSymbolDictDecoder = pdfium::MakeUnique<CJBig2_SDDProc>(); in ParseSymbolDict() local
382 pSymbolDictDecoder->SDHUFF = wFlags & 0x0001; in ParseSymbolDict()
383 pSymbolDictDecoder->SDREFAGG = (wFlags >> 1) & 0x0001; in ParseSymbolDict()
384 pSymbolDictDecoder->SDTEMPLATE = (wFlags >> 10) & 0x0003; in ParseSymbolDict()
385 pSymbolDictDecoder->SDRTEMPLATE = !!((wFlags >> 12) & 0x0003); in ParseSymbolDict()
386 if (pSymbolDictDecoder->SDHUFF == 0) { in ParseSymbolDict()
387 const uint32_t dwTemp = (pSymbolDictDecoder->SDTEMPLATE == 0) ? 8 : 2; in ParseSymbolDict()
389 if (m_pStream->read1Byte((uint8_t*)&pSymbolDictDecoder->SDAT[i]) != 0) in ParseSymbolDict()
393 if (pSymbolDictDecoder->SDREFAGG == 1 && !pSymbolDictDecoder->SDRTEMPLATE) { in ParseSymbolDict()
395 if (m_pStream->read1Byte((uint8_t*)&pSymbolDictDecoder->SDRAT[i]) != 0) in ParseSymbolDict()
[all …]