Lines Matching refs:nLeft

69237   int nLeft,                      /* IN: Elements in array *paLeft */  argument
69248 assert( nLeft>0 && nRight>0 );
69249 while( iRight<nRight || iLeft<nLeft ){
69253 if( (iLeft<nLeft)
69263 if( iLeft<nLeft && aContent[aLeft[iLeft]]==dbpage ) iLeft++;
69265 assert( iLeft>=nLeft || aContent[aLeft[iLeft]]>dbpage );
111751 int nLeft, nRight; local
111754 nLeft = sqlite3ExprVectorSize(pExpr->pLeft);
111758 if( nRight==nLeft ){
111765 if( nLeft!=nRight ){
113354 int nLeft = sqlite3ExprVectorSize(pLeft); local
113365 if( nLeft!=sqlite3ExprVectorSize(pRight) ){
113391 assert( i>=0 && i<nLeft );
113405 if( (opx==TK_LT || opx==TK_GT) && i<nLeft-1 ){
113415 if( i==nLeft-1 ){
113423 if( i==nLeft-2 ) opx = op;
167784 int nLeft; /* Number of elements on left side vector */ local
168111 && (nLeft = sqlite3ExprVectorSize(pExpr->pLeft))>1
168112 && sqlite3ExprVectorSize(pExpr->pRight)==nLeft
168118 for(i=0; i<nLeft; i++){
168121 Expr *pLeft = sqlite3ExprForVectorField(pParse, pExpr->pLeft, i, nLeft);
168122 Expr *pRight = sqlite3ExprForVectorField(pParse, pExpr->pRight, i, nLeft);
196081 int nLeft, /* Maximum difference in token positions */ argument
196097 fts3PoslistPhraseMerge(&pTmp2, nLeft, 1, 0, pp2, pp1);
196323 char *aLeft, int nLeft, /* Left doclist */ argument
196330 char *pEnd1 = &aLeft[nLeft];
197917 int nLeft; local
197923 nLeft = p->doclist.nAll;
197931 nLeft = nList;
197936 pTab->bDescIdx, nDiff, pLeft, nLeft, &pRight, &nRight
210512 int nLeft; /* Tokens to the left of first highlight */ local
210516 for(nLeft=0; !(hlmask & ((u64)1 << nLeft)); nLeft++);
210519 nDesired = (nLeft-nRight)/2;
215233 u32 nLeft, /* Size of the left label in bytes */ argument
215242 if( nLeft==0 ){
215247 int sz = sqlite3Utf8ReadLimited((u8*)zLeft, nLeft, &cLeft);
215249 nLeft -= sz;
215252 nLeft--;
215255 u32 n = jsonUnescapeOneChar(zLeft, nLeft, &cLeft);
215257 assert( n<=nLeft );
215258 nLeft -= n;
215289 u32 nLeft, /* Size of the left label in bytes */ argument
215298 if( nLeft!=nRight ) return 0;
215299 return memcmp(zLeft, zRight, nLeft)==0;
215301 return jsonLabelCompareEscaped(zLeft, nLeft, rawLeft,
220505 int nLeft = nIdx/2; local
220506 int nRight = nIdx-nLeft;
220508 int *aRight = &aIdx[nLeft];
220510 SortByDimension(pRtree, aLeft, nLeft, iDim, aCell, aSpare);
220513 memcpy(aSpare, aLeft, sizeof(int)*nLeft);
220515 while( iLeft<nLeft || iRight<nRight ){
220520 if( (iLeft!=nLeft) && ((iRight==nRight)
220591 int nLeft; local
220594 nLeft=RTREE_MINCELLS(pRtree);
220595 nLeft<=(nCell-RTREE_MINCELLS(pRtree));
220596 nLeft++
220607 if( kk<nLeft ){
220617 if( (nLeft==RTREE_MINCELLS(pRtree))
220621 iBestLeft = nLeft;
224858 int nLeft, argument
224865 res = ucol_strcoll(p, (UChar *)zLeft, nLeft/2, (UChar *)zRight, nRight/2);
239814 int nLeft, /* Number of bytes in lhs input */ argument
239826 rc = sqlite3changegroup_add(pGrp, nLeft, pLeft);