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;
60 nTmp = 0;
61 while ((uint32_t)(1 << nTmp) < (SDNUMINSYMS + SDNUMNEWSYMS)) {
62 nTmp++;
64 IAID = pdfium::MakeUnique<CJBig2_ArithIaidDecoder>((uint8_t)nTmp);
127 nTmp = 0;
128 while ((uint32_t)(1 << nTmp) < SBNUMSYMS) {
129 nTmp++;
131 SBSYMCODELEN = (uint8_t)nTmp;
278 uint32_t nTmp;
    [all...]
JBig2_TrdProc.cpp 70 uint32_t nTmp = 1;
71 while (static_cast<uint32_t>(1 << nTmp) < SBSTRIPS)
72 ++nTmp;
74 if (pStream->readNBits(nTmp, &nVal) != 0)
88 uint32_t nTmp;
89 if (pStream->read1Bit(&nTmp) != 0)
96 nVal |= nTmp;
128 uint32_t nTmp = pStream->getOffset();
160 if (static_cast<uint32_t>(HUFFRSIZE) != (pStream->getOffset() - nTmp))
  /external/pdfium/third_party/libtiff/
tif_dirwrite.c 843 uint32 nTmp;
861 nTmp = (uint32)o->tdir_count;
862 _TIFFmemcpy(n,&nTmp,4);
872 nTmp = (uint32)tif->tif_nextdiroff;
874 TIFFSwabLong(&nTmp);
875 _TIFFmemcpy(n,&nTmp,4);
    [all...]

Completed in 172 milliseconds