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.cpp121 uint32_t nTmp = 0; in DecodeArith() local
122 while ((uint32_t)(1 << nTmp) < pDecoder->SBNUMSYMS) { in DecodeArith()
123 nTmp++; in DecodeArith()
125 uint8_t SBSYMCODELEN = (uint8_t)nTmp; in DecodeArith()
313 uint32_t nTmp = 1; in DecodeHuffman() local
314 while (static_cast<uint32_t>(1 << nTmp) < pDecoder->SBNUMSYMS) in DecodeHuffman()
315 ++nTmp; in DecodeHuffman()
317 SBSYMCODES[i].codelen = nTmp; in DecodeHuffman()
351 uint32_t nTmp = 1; in DecodeHuffman() local
352 while ((uint32_t)(1 << nTmp) < SBNUMSYMS) { in DecodeHuffman()
[all …]
DJBig2_TrdProc.cpp100 uint32_t nTmp = 1; in DecodeHuffman() local
101 while (static_cast<uint32_t>(1 << nTmp) < SBSTRIPS) in DecodeHuffman()
102 ++nTmp; in DecodeHuffman()
104 if (pStream->readNBits(nTmp, &nVal) != 0) in DecodeHuffman()
118 uint32_t nTmp; in DecodeHuffman() local
119 if (pStream->read1Bit(&nTmp) != 0) in DecodeHuffman()
126 nSafeVal |= nTmp; in DecodeHuffman()
157 uint32_t nTmp = pStream->getOffset(); in DecodeHuffman() local
194 if (static_cast<uint32_t>(HUFFRSIZE) != (pStream->getOffset() - nTmp)) in DecodeHuffman()
/external/pdfium/third_party/libtiff/
Dtif_dirwrite.c1150 uint32_t nTmp; in TIFFWriteDirectorySec() local
1168 nTmp = (uint32_t)o->tdir_count; in TIFFWriteDirectorySec()
1169 _TIFFmemcpy(n, &nTmp, 4); in TIFFWriteDirectorySec()
1179 nTmp = (uint32_t)tif->tif_nextdiroff; in TIFFWriteDirectorySec()
1181 TIFFSwabLong(&nTmp); in TIFFWriteDirectorySec()
1182 _TIFFmemcpy(n, &nTmp, 4); in TIFFWriteDirectorySec()
/external/sqlite/dist/orig/
Dsqlite3.c182200 sqlite3_int64 nTmp = 0; /* Bytes of temp space */
182206 nTmp += p->pRight->pPhrase->doclist.nList;
182208 nTmp += p->pPhrase->doclist.nList;
182209 aTmp = sqlite3_malloc64(nTmp*2);
232129 int nTmp = FTS5_DATA_ZERO_PADDING;
232142 nTmp += pSave->iter.nPoslist + 10;
232156 if( sqlite3Fts5BufferSize(&p->rc, &tmp, nTmp+nMerge*10) ){
232183 assert_nc( tmp.n+nTail<=nTmp );
232184 assert( tmp.n+nTail<=nTmp+nMerge*10 );
232185 if( tmp.n+nTail>nTmp-FTS5_DATA_ZERO_PADDING ){
/external/sqlite/dist/
Dsqlite3.c182232 sqlite3_int64 nTmp = 0; /* Bytes of temp space */
182238 nTmp += p->pRight->pPhrase->doclist.nList;
182240 nTmp += p->pPhrase->doclist.nList;
182241 aTmp = sqlite3_malloc64(nTmp*2);
232161 int nTmp = FTS5_DATA_ZERO_PADDING;
232174 nTmp += pSave->iter.nPoslist + 10;
232188 if( sqlite3Fts5BufferSize(&p->rc, &tmp, nTmp+nMerge*10) ){
232215 assert_nc( tmp.n+nTail<=nTmp );
232216 assert( tmp.n+nTail<=nTmp+nMerge*10 );
232217 if( tmp.n+nTail>nTmp-FTS5_DATA_ZERO_PADDING ){
/external/rust/crates/libsqlite3-sys/sqlite3/
Dsqlite3.c175432 sqlite3_int64 nTmp = 0; /* Bytes of temp space */
175438 nTmp += p->pRight->pPhrase->doclist.nList;
175440 nTmp += p->pPhrase->doclist.nList;
175441 aTmp = sqlite3_malloc64(nTmp*2);
224824 int nTmp = FTS5_DATA_ZERO_PADDING;
224837 nTmp += pSave->iter.nPoslist + 10;
224851 if( sqlite3Fts5BufferSize(&p->rc, &tmp, nTmp+nMerge*10) ){
224878 assert( tmp.n+nTail<=nTmp );
224879 if( tmp.n+nTail>nTmp-FTS5_DATA_ZERO_PADDING ){