Home
last modified time | relevance | path

Searched refs:nSort (Results 1 – 3 of 3) sorted by relevance

/sqlite-3.40.0/test/
H A DorderbyA.test119 set nSort [expr ($tn==2 || $tn==3) ? 0 : 1]
122 } $nSort {{} one 45 {} two 48 1 one 9 1 two 12 2 one 27 2 two 30}
125 } $nSort {2 two 30 2 one 27 1 two 12 1 one 9 {} two 48 {} one 45}
127 set nSort [expr ($tn==4 || $tn==5) ? 0 : 1]
130 } $nSort { {} two 48 {} one 45 1 two 12 1 one 9 2 two 30 2 one 27 }
133 } $nSort { 2 one 27 2 two 30 1 one 9 1 two 12 {} one 45 {} two 48 }
137 set nSort [expr $tn==1 ? 2 : 1]
140 } $nSort { {} two 48 {} one 45 1 two 12 1 one 9 2 two 30 2 one 27 }
143 } $nSort { 2 one 27 2 two 30 1 one 9 1 two 12 {} one 45 {} two 48 }
/sqlite-3.40.0/ext/lsm1/
H A Dlsm_tree.c1276 int nSort; in treeRepairList() local
1282 nSort = 1; in treeRepairList()
1283 while( (u32)nSort < (db->treehdr.nChunk-1) ) nSort = nSort * 2; in treeRepairList()
1284 nByte = sizeof(ShmChunkLoc) * nSort * 2; in treeRepairList()
1308 ShmChunkLoc *aSpace = &aSort[nSort]; in treeRepairList()
1309 for(i=0; i<nSort; i++){ in treeRepairList()
1317 if( aSpace[nSort-1].pShm ) aSpace[nSort-1].pShm->iNext = 0; in treeRepairList()
1318 for(i=0; i<nSort-1; i++){ in treeRepairList()
/sqlite-3.40.0/src/
H A Dtclsqlite.c180 int nStep, nSort, nIndex; /* Statistics for most recent operation */ member
1694 pDb->nSort = sqlite3_stmt_status(pStmt,SQLITE_STMTSTATUS_SORT,1); in dbEvalStep()
3252 v = pDb->nSort; in DbObjCmd()