HomeSort by relevance Sort by last modified time
    Searched refs:cTemp (Results 1 - 2 of 2) sorted by null

  /external/pdfium/core/src/fxcodec/jbig2/
JBig2_HuffmanTable.cpp 112 unsigned char cTemp;
113 if(pStream->read1Byte(&cTemp) == -1) {
116 HTOOB = cTemp & 0x01;
117 HTPS = ((cTemp >> 1) & 0x07) + 1;
118 HTRS = ((cTemp >> 4) & 0x07) + 1;
JBig2_Context.cpp 417 FX_BYTE cTemp;
424 cTemp = m_pStream->getCurByte();
425 if((cTemp >> 5) == 7) {
436 if(m_pStream->read1Byte(&cTemp) != 0) {
439 pSegment->m_nReferred_to_segment_count = cTemp >> 5;
450 if(m_pStream->read1Byte(&cTemp) != 0) {
453 pSegment->m_pReferred_to_segment_numbers[i] = cTemp;
475 if(m_pStream->read1Byte(&cTemp) != 0) {
478 pSegment->m_dwPage_association = cTemp;
    [all...]

Completed in 205 milliseconds