Home
last modified time | relevance | path

Searched refs:iHash (Results 1 – 5 of 5) sorted by relevance

/external/pdfium/core/fpdfapi/parser/
Dcpdf_security_handler.cpp274 int iHash = 0; in Revision6_Hash() local
277 iHash = 0; in Revision6_Hash()
281 iHash = 1; in Revision6_Hash()
285 iHash = 2; in Revision6_Hash()
291 if (iHash == 0) { in Revision6_Hash()
293 } else if (iHash == 1) { in Revision6_Hash()
295 } else if (iHash == 2) { in Revision6_Hash()
/external/sqlite/dist/orig/
Dshell.c6147 int iHash = idxHashString(zKey, nKey); in idxHashAdd() local
6150 assert( iHash>=0 ); in idxHashAdd()
6151 for(pEntry=pHash->aHash[iHash]; pEntry; pEntry=pEntry->pHashNext){ in idxHashAdd()
6164 pEntry->pHashNext = pHash->aHash[iHash]; in idxHashAdd()
6165 pHash->aHash[iHash] = pEntry; in idxHashAdd()
6178 int iHash; in idxHashFind() local
6181 iHash = idxHashString(zKey, nKey); in idxHashFind()
6182 assert( iHash>=0 ); in idxHashFind()
6183 for(pEntry=pHash->aHash[iHash]; pEntry; pEntry=pEntry->pHashNext){ in idxHashFind()
Dsqlite3.c56487 int iHash, /* Find the iHash'th table */
56495 rc = walIndexPage(pWal, iHash, &aPgno);
56496 assert( rc==SQLITE_OK || iHash>0 );
56503 if( iHash==0 ){
56507 iZero = HASHTABLE_NPAGE_ONE + (iHash-1)*HASHTABLE_NPAGE;
56524 int iHash = (iFrame+HASHTABLE_NPAGE-HASHTABLE_NPAGE_ONE-1) / HASHTABLE_NPAGE;
56525 assert( (iHash==0 || iFrame>HASHTABLE_NPAGE_ONE)
56526 && (iHash>=1 || iFrame<=HASHTABLE_NPAGE_ONE)
56527 && (iHash<=1 || iFrame>(HASHTABLE_NPAGE_ONE+HASHTABLE_NPAGE))
56528 && (iHash>=2 || iFrame<=HASHTABLE_NPAGE_ONE+HASHTABLE_NPAGE)
[all …]
/external/sqlite/dist/
Dshell.c6153 int iHash = idxHashString(zKey, nKey); in idxHashAdd() local
6156 assert( iHash>=0 ); in idxHashAdd()
6157 for(pEntry=pHash->aHash[iHash]; pEntry; pEntry=pEntry->pHashNext){ in idxHashAdd()
6170 pEntry->pHashNext = pHash->aHash[iHash]; in idxHashAdd()
6171 pHash->aHash[iHash] = pEntry; in idxHashAdd()
6184 int iHash; in idxHashFind() local
6187 iHash = idxHashString(zKey, nKey); in idxHashFind()
6188 assert( iHash>=0 ); in idxHashFind()
6189 for(pEntry=pHash->aHash[iHash]; pEntry; pEntry=pEntry->pHashNext){ in idxHashFind()
Dsqlite3.c56503 int iHash, /* Find the iHash'th table */
56511 rc = walIndexPage(pWal, iHash, &aPgno);
56512 assert( rc==SQLITE_OK || iHash>0 );
56519 if( iHash==0 ){
56523 iZero = HASHTABLE_NPAGE_ONE + (iHash-1)*HASHTABLE_NPAGE;
56540 int iHash = (iFrame+HASHTABLE_NPAGE-HASHTABLE_NPAGE_ONE-1) / HASHTABLE_NPAGE;
56541 assert( (iHash==0 || iFrame>HASHTABLE_NPAGE_ONE)
56542 && (iHash>=1 || iFrame<=HASHTABLE_NPAGE_ONE)
56543 && (iHash<=1 || iFrame>(HASHTABLE_NPAGE_ONE+HASHTABLE_NPAGE))
56544 && (iHash>=2 || iFrame<=HASHTABLE_NPAGE_ONE+HASHTABLE_NPAGE)
[all …]