Home
last modified time | relevance | path

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

/external/pdfium/core/fxcodec/jbig2/
DJBig2_HuffmanDecoder.cpp21 uint32_t nTmp; in decodeAValue() local
22 if (m_pStream->read1Bit(&nTmp) == -1) in decodeAValue()
25 nVal = (nVal << 1) | nTmp; in decodeAValue()
32 if (m_pStream->readNBits(pTable->GetRANGELEN()[i], &nTmp) == -1) in decodeAValue()
37 *nResult = pTable->GetRANGELOW()[i] - nTmp; in decodeAValue()
39 *nResult = pTable->GetRANGELOW()[i] + nTmp; in decodeAValue()
DJBig2_SddProc.cpp38 uint32_t nTmp; in decode_Arith() local
59 nTmp = 0; in decode_Arith()
60 while ((uint32_t)(1 << nTmp) < (SDNUMINSYMS + SDNUMNEWSYMS)) { in decode_Arith()
61 nTmp++; in decode_Arith()
63 IAID = pdfium::MakeUnique<CJBig2_ArithIaidDecoder>((uint8_t)nTmp); in decode_Arith()
128 nTmp = 0; in decode_Arith()
129 while ((uint32_t)(1 << nTmp) < SBNUMSYMS) { in decode_Arith()
130 nTmp++; in decode_Arith()
132 SBSYMCODELEN = (uint8_t)nTmp; in decode_Arith()
310 uint32_t nTmp; in decode_Huffman() local
[all …]
DJBig2_TrdProc.cpp62 uint32_t nTmp = 1; in decode_Huffman() local
63 while ((uint32_t)(1 << nTmp) < SBSTRIPS) { in decode_Huffman()
64 nTmp++; in decode_Huffman()
67 if (pStream->readNBits(nTmp, &nVal) != 0) in decode_Huffman()
77 uint32_t nTmp; in decode_Huffman() local
78 if (pStream->read1Bit(&nTmp) != 0) in decode_Huffman()
81 nVal = (nVal << 1) | nTmp; in decode_Huffman()
113 uint32_t nTmp = pStream->getOffset(); in decode_Huffman() local
146 if ((uint32_t)nVal != (pStream->getOffset() - nTmp)) { in decode_Huffman()
/external/pdfium/third_party/libtiff/
Dtif_dirwrite.c828 uint32 nTmp; in TIFFWriteDirectorySec() local
846 nTmp = (uint32)o->tdir_count; in TIFFWriteDirectorySec()
847 _TIFFmemcpy(n,&nTmp,4); in TIFFWriteDirectorySec()
857 nTmp = (uint32)tif->tif_nextdiroff; in TIFFWriteDirectorySec()
859 TIFFSwabLong(&nTmp); in TIFFWriteDirectorySec()
860 _TIFFmemcpy(n,&nTmp,4); in TIFFWriteDirectorySec()
/external/pdfium/xfa/fxfa/fm2js/
Dxfa_fm2jscontext.cpp2592 FX_FLOAT nTmp = 1 + nRate; in Pmt() local
2593 FX_FLOAT nSum = nTmp; in Pmt()
2595 nSum *= nTmp; in Pmt()
/external/sqlite/dist/orig/
Dsqlite3.c151261 int nTmp = 0; /* Bytes of temp space */
151267 nTmp += p->pRight->pPhrase->doclist.nList;
151269 nTmp += p->pPhrase->doclist.nList;
151270 aTmp = sqlite3_malloc(nTmp*2);
/external/sqlite/dist/
Dsqlite3.c151274 int nTmp = 0; /* Bytes of temp space */
151280 nTmp += p->pRight->pPhrase->doclist.nList;
151282 nTmp += p->pPhrase->doclist.nList;
151283 aTmp = sqlite3_malloc(nTmp*2);