Home
last modified time | relevance | path

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

/external/pdfium/core/fxcodec/jbig2/
DJBig2_HuffmanDecoder.cpp22 uint32_t nTmp; in DecodeAValue() local
23 if (m_pStream->read1Bit(&nTmp) == -1) in DecodeAValue()
30 nSafeVal |= nTmp; in DecodeAValue()
41 if (m_pStream->readNBits(pTable->GetRANGELEN()[i], &nTmp) == -1) in DecodeAValue()
46 *nResult = pTable->GetRANGELOW()[i] - nTmp; in DecodeAValue()
48 *nResult = pTable->GetRANGELOW()[i] + nTmp; in DecodeAValue()
DJBig2_SddProc.cpp44 uint32_t nTmp; in DecodeArith() local
66 nTmp = 0; in DecodeArith()
67 while ((uint32_t)(1 << nTmp) < (SDNUMINSYMS + SDNUMNEWSYMS)) { in DecodeArith()
68 nTmp++; in DecodeArith()
70 IAID = pdfium::MakeUnique<CJBig2_ArithIaidDecoder>((uint8_t)nTmp); in DecodeArith()
142 nTmp = 0; in DecodeArith()
143 while ((uint32_t)(1 << nTmp) < SBNUMSYMS) { in DecodeArith()
144 nTmp++; in DecodeArith()
146 SBSYMCODELEN = (uint8_t)nTmp; in DecodeArith()
277 uint32_t nTmp; in DecodeHuffman() local
[all …]
DJBig2_TrdProc.cpp101 uint32_t nTmp = 1; in DecodeHuffman() local
102 while (static_cast<uint32_t>(1 << nTmp) < SBSTRIPS) in DecodeHuffman()
103 ++nTmp; in DecodeHuffman()
105 if (pStream->readNBits(nTmp, &nVal) != 0) in DecodeHuffman()
119 uint32_t nTmp; in DecodeHuffman() local
120 if (pStream->read1Bit(&nTmp) != 0) in DecodeHuffman()
127 nSafeVal |= nTmp; in DecodeHuffman()
159 uint32_t nTmp = pStream->getOffset(); in DecodeHuffman() local
196 if (static_cast<uint32_t>(HUFFRSIZE) != (pStream->getOffset() - nTmp)) in DecodeHuffman()
/external/pdfium/third_party/libtiff/
Dtif_dirwrite.c893 uint32 nTmp; in TIFFWriteDirectorySec() local
911 nTmp = (uint32)o->tdir_count; in TIFFWriteDirectorySec()
912 _TIFFmemcpy(n,&nTmp,4); in TIFFWriteDirectorySec()
922 nTmp = (uint32)tif->tif_nextdiroff; in TIFFWriteDirectorySec()
924 TIFFSwabLong(&nTmp); in TIFFWriteDirectorySec()
925 _TIFFmemcpy(n,&nTmp,4); in TIFFWriteDirectorySec()
/external/pdfium/fxjs/xfa/
Dcfxjse_formcalc_context.cpp2831 float nTmp = 1 + nRate; in Pmt() local
2832 float nSum = nTmp; in Pmt()
2834 nSum *= nTmp; in Pmt()
/external/sqlite/dist/
Dsqlite3.c165780 sqlite3_int64 nTmp = 0; /* Bytes of temp space */
165786 nTmp += p->pRight->pPhrase->doclist.nList;
165788 nTmp += p->pPhrase->doclist.nList;
165789 aTmp = sqlite3_malloc64(nTmp*2);
/external/sqlite/dist/orig/
Dsqlite3.c165752 sqlite3_int64 nTmp = 0; /* Bytes of temp space */
165758 nTmp += p->pRight->pPhrase->doclist.nList;
165760 nTmp += p->pPhrase->doclist.nList;
165761 aTmp = sqlite3_malloc64(nTmp*2);