Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/sqlite3/
Dshell.c12625 int iSlot; in idxRemFunc() local
12628 iSlot = sqlite3_value_int(argv[0]); in idxRemFunc()
12629 assert( iSlot<=p->nSlot ); in idxRemFunc()
12630 pSlot = &p->aSlot[iSlot]; in idxRemFunc()
Dsqlite3.c236147 int iSlot;
236155 for(iSlot=0; iSlot<pHash->nSlot; iSlot++){
236157 for(pIter=pHash->aSlot[iSlot]; pIter; pIter=pIter->pHashNext){
239412 int iSlot = (iRowid / nHashTable) % nSlot;
239419 while( aSlot[iSlot] ){
239420 if( fts5GetU32((u8*)&aSlot[iSlot])==iRowid ) return 1;
239422 iSlot = (iSlot+1)%nSlot;
239426 while( aSlot[iSlot] ){
239427 if( fts5GetU64((u8*)&aSlot[iSlot])==iRowid ) return 1;
239429 iSlot = (iSlot+1)%nSlot;
[all …]