Lines Matching defs:nLeft
65007 int nLeft, /* IN: Elements in array *paLeft */
65018 assert( nLeft>0 && nRight>0 );
65019 while( iRight<nRight || iLeft<nLeft ){
65023 if( (iLeft<nLeft)
65033 if( iLeft<nLeft && aContent[aLeft[iLeft]]==dbpage ) iLeft++;
65035 assert( iLeft>=nLeft || aContent[aLeft[iLeft]]>dbpage );
104943 int nLeft, nRight;
104946 nLeft = sqlite3ExprVectorSize(pExpr->pLeft);
104950 if( nRight==nLeft ){
104957 if( nLeft!=nRight ){
106437 int nLeft = sqlite3ExprVectorSize(pLeft);
106448 if( nLeft!=sqlite3ExprVectorSize(pRight) ){
106474 assert( i>=0 && i<nLeft );
106488 if( (opx==TK_LT || opx==TK_GT) && i<nLeft-1 ){
106498 if( i==nLeft-1 ){
106506 if( i==nLeft-2 ) opx = op;
155764 int nLeft; /* Number of elements on left side vector */
156096 && (nLeft = sqlite3ExprVectorSize(pExpr->pLeft))>1
156097 && sqlite3ExprVectorSize(pExpr->pRight)==nLeft
156103 for(i=0; i<nLeft; i++){
156106 Expr *pLeft = sqlite3ExprForVectorField(pParse, pExpr->pLeft, i, nLeft);
156107 Expr *pRight = sqlite3ExprForVectorField(pParse, pExpr->pRight, i, nLeft);
182093 int nLeft, /* Maximum difference in token positions */
182109 fts3PoslistPhraseMerge(&pTmp2, nLeft, 1, 0, pp2, pp1);
182335 char *aLeft, int nLeft, /* Left doclist */
182342 char *pEnd1 = &aLeft[nLeft];
183874 int nLeft;
183880 nLeft = p->doclist.nAll;
183888 nLeft = nList;
183893 pTab->bDescIdx, nDiff, pLeft, nLeft, &pRight, &nRight
196369 int nLeft; /* Tokens to the left of first highlight */
196373 for(nLeft=0; !(hlmask & ((u64)1 << nLeft)); nLeft++);
196376 nDesired = (nLeft-nRight)/2;
203288 int nLeft = nIdx/2;
203289 int nRight = nIdx-nLeft;
203291 int *aRight = &aIdx[nLeft];
203293 SortByDistance(aLeft, nLeft, aDistance, aSpare);
203296 memcpy(aSpare, aLeft, sizeof(int)*nLeft);
203299 while( iLeft<nLeft || iRight<nRight ){
203300 if( iLeft==nLeft ){
203357 int nLeft = nIdx/2;
203358 int nRight = nIdx-nLeft;
203360 int *aRight = &aIdx[nLeft];
203362 SortByDimension(pRtree, aLeft, nLeft, iDim, aCell, aSpare);
203365 memcpy(aSpare, aLeft, sizeof(int)*nLeft);
203367 while( iLeft<nLeft || iRight<nRight ){
203372 if( (iLeft!=nLeft) && ((iRight==nRight)
203443 int nLeft;
203446 nLeft=RTREE_MINCELLS(pRtree);
203447 nLeft<=(nCell-RTREE_MINCELLS(pRtree));
203448 nLeft++
203459 if( kk<nLeft ){
203469 if( (nLeft==RTREE_MINCELLS(pRtree))
203473 iBestLeft = nLeft;
207781 int nLeft,
207788 res = ucol_strcoll(p, (UChar *)zLeft, nLeft/2, (UChar *)zRight, nRight/2);
220921 int nLeft, /* Number of bytes in lhs input */
220933 rc = sqlite3changegroup_add(pGrp, nLeft, pLeft);