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

  /external/pdfium/core/fxcodec/jbig2/
JBig2_HuffmanDecoder.cpp 21 uint32_t nTmp;
22 if (m_pStream->read1Bit(&nTmp) == -1)
25 nVal = (nVal << 1) | nTmp;
32 if (m_pStream->readNBits(pTable->GetRANGELEN()[i], &nTmp) == -1)
37 *nResult = pTable->GetRANGELOW()[i] - nTmp;
39 *nResult = pTable->GetRANGELOW()[i] + nTmp;
JBig2_SddProc.cpp 38 uint32_t nTmp;
59 nTmp = 0;
60 while ((uint32_t)(1 << nTmp) < (SDNUMINSYMS + SDNUMNEWSYMS)) {
61 nTmp++;
63 IAID = pdfium::MakeUnique<CJBig2_ArithIaidDecoder>((uint8_t)nTmp);
128 nTmp = 0;
129 while ((uint32_t)(1 << nTmp) < SBNUMSYMS) {
130 nTmp++;
132 SBSYMCODELEN = (uint8_t)nTmp;
310 uint32_t nTmp;
    [all...]
JBig2_TrdProc.cpp 62 uint32_t nTmp = 1;
63 while ((uint32_t)(1 << nTmp) < SBSTRIPS) {
64 nTmp++;
67 if (pStream->readNBits(nTmp, &nVal) != 0)
77 uint32_t nTmp;
78 if (pStream->read1Bit(&nTmp) != 0)
81 nVal = (nVal << 1) | nTmp;
113 uint32_t nTmp = pStream->getOffset();
146 if ((uint32_t)nVal != (pStream->getOffset() - nTmp)) {
  /external/pdfium/third_party/libtiff/
tif_dirwrite.c 828 uint32 nTmp;
846 nTmp = (uint32)o->tdir_count;
847 _TIFFmemcpy(n,&nTmp,4);
857 nTmp = (uint32)tif->tif_nextdiroff;
859 TIFFSwabLong(&nTmp);
860 _TIFFmemcpy(n,&nTmp,4);
    [all...]

Completed in 158 milliseconds