Home
last modified time | relevance | path

Searched refs:iSlot (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dshell.c13428 int iSlot; in idxRemFunc() local
13431 iSlot = sqlite3_value_int(argv[0]); in idxRemFunc()
13432 assert( iSlot<p->nSlot ); in idxRemFunc()
13433 pSlot = &p->aSlot[iSlot]; in idxRemFunc()
H A Dsqlite3.c240388 int iSlot;
240396 for(iSlot=0; iSlot<pHash->nSlot; iSlot++){
240398 for(pIter=pHash->aSlot[iSlot]; pIter; pIter=pIter->pHashNext){
243775 int iSlot = (iRowid / nHashTable) % nSlot;
243782 while( aSlot[iSlot] ){
243783 if( fts5GetU32((u8*)&aSlot[iSlot])==iRowid ) return 1;
243785 iSlot = (iSlot+1)%nSlot;
243789 while( aSlot[iSlot] ){
243790 if( fts5GetU64((u8*)&aSlot[iSlot])==iRowid ) return 1;
243792 iSlot = (iSlot+1)%nSlot;
[all …]