Home
last modified time | relevance | path

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

/sqlite-3.40.0/test/
H A Dmalloctraceviewer.tcl103 proc sort_tree_compare {iLeft iRight} {
107 set left [$O(tree) item $iLeft -text]
112 set left [lindex [$O(tree) item $iLeft -values] 0]
117 set left [lindex [$O(tree) item $iLeft -values] 1]
/sqlite-3.40.0/ext/rtree/
H A Drtree.c2339 int iLeft = 0; in SortByDistance() local
2353 while( iLeft<nLeft || iRight<nRight ){ in SortByDistance()
2354 if( iLeft==nLeft ){ in SortByDistance()
2358 aIdx[iLeft+iRight] = aLeft[iLeft]; in SortByDistance()
2359 iLeft++; in SortByDistance()
2364 aIdx[iLeft+iRight] = aLeft[iLeft]; in SortByDistance()
2365 iLeft++; in SortByDistance()
2408 int iLeft = 0; in SortByDimension() local
2421 while( iLeft<nLeft || iRight<nRight ){ in SortByDimension()
2430 aIdx[iLeft+iRight] = aLeft[iLeft]; in SortByDimension()
[all …]
/sqlite-3.40.0/src/
H A Dwal.c1651 int iLeft = 0; /* Current index in aLeft */ in walMerge() local
1658 while( iRight<nRight || iLeft<nLeft ){ in walMerge()
1662 if( (iLeft<nLeft) in walMerge()
1663 && (iRight>=nRight || aContent[aLeft[iLeft]]<aContent[aRight[iRight]]) in walMerge()
1665 logpage = aLeft[iLeft++]; in walMerge()
1672 if( iLeft<nLeft && aContent[aLeft[iLeft]]==dbpage ) iLeft++; in walMerge()
1674 assert( iLeft>=nLeft || aContent[aLeft[iLeft]]>dbpage ); in walMerge()
H A Dselect.c547 int iLeft; /* Table on the left with matching column name */ in sqlite3ProcessJoin() local
557 || tableAndColumnIndex(pSrc, 0, i, zName, &iLeft, &iLeftCol, in sqlite3ProcessJoin()
564 pE1 = sqlite3CreateColumnExpr(db, pSrc, iLeft, iLeftCol); in sqlite3ProcessJoin()
565 sqlite3SrcItemColumnUsed(&pSrc->a[iLeft], iLeftCol); in sqlite3ProcessJoin()
582 while( tableAndColumnIndex(pSrc, iLeft+1, i, zName, &iLeft, &iLeftCol, in sqlite3ProcessJoin()
584 if( pSrc->a[iLeft].fg.isUsing==0 in sqlite3ProcessJoin()
585 || sqlite3IdListIndex(pSrc->a[iLeft].u3.pUsing, zName)<0 in sqlite3ProcessJoin()
592 pE1 = sqlite3CreateColumnExpr(db, pSrc, iLeft, iLeftCol); in sqlite3ProcessJoin()
593 sqlite3SrcItemColumnUsed(&pSrc->a[iLeft], iLeftCol); in sqlite3ProcessJoin()
/sqlite-3.40.0/ext/lsm1/
H A Dlsm_tree.c909 u32 iLeft; TreeNode *pLeft; /* New left-hand sibling node */ in treeInsert() local
912 pLeft = newTreeNode(pDb, &iLeft, &rc); in treeInsert()
930 pRoot->aiChildPtr[1] = iLeft; in treeInsert()
939 iLeft, pNode->aiKeyPtr[1], iRight, pCsr->aiCell[pCsr->iNode] in treeInsert()