Lines Matching refs:nLeft
60946 int nLeft, /* IN: Elements in array *paLeft */
60957 assert( nLeft>0 && nRight>0 );
60958 while( iRight<nRight || iLeft<nLeft ){
60962 if( (iLeft<nLeft)
60972 if( iLeft<nLeft && aContent[aLeft[iLeft]]==dbpage ) iLeft++;
60974 assert( iLeft>=nLeft || aContent[aLeft[iLeft]]>dbpage );
98851 int nLeft, nRight;
98854 nLeft = sqlite3ExprVectorSize(pExpr->pLeft);
98857 if( nRight==nLeft ){
98864 if( nLeft!=nRight ){
100310 int nLeft = sqlite3ExprVectorSize(pLeft);
100320 if( nLeft!=sqlite3ExprVectorSize(pRight) ){
100345 assert( i>=0 && i<nLeft );
100357 if( i==nLeft-1 ){
100373 if( i==nLeft-2 ) opx = op;
145043 int nLeft; /* Number of elements on left side vector */
145330 && (nLeft = sqlite3ExprVectorSize(pExpr->pLeft))>1
145331 && sqlite3ExprVectorSize(pExpr->pRight)==nLeft
145336 for(i=0; i<nLeft; i++){
169327 int nLeft, /* Maximum difference in token positions */
169343 fts3PoslistPhraseMerge(&pTmp2, nLeft, 1, 0, pp2, pp1);
169569 char *aLeft, int nLeft, /* Left doclist */
169576 char *pEnd1 = &aLeft[nLeft];
171095 int nLeft;
171101 nLeft = p->doclist.nAll;
171109 nLeft = nList;
171114 pTab->bDescIdx, nDiff, pLeft, nLeft, &pRight, &nRight
183552 int nLeft; /* Tokens to the left of first highlight */
183556 for(nLeft=0; !(hlmask & ((u64)1 << nLeft)); nLeft++);
183559 nDesired = (nLeft-nRight)/2;
190375 int nLeft = nIdx/2;
190376 int nRight = nIdx-nLeft;
190378 int *aRight = &aIdx[nLeft];
190380 SortByDistance(aLeft, nLeft, aDistance, aSpare);
190383 memcpy(aSpare, aLeft, sizeof(int)*nLeft);
190386 while( iLeft<nLeft || iRight<nRight ){
190387 if( iLeft==nLeft ){
190444 int nLeft = nIdx/2;
190445 int nRight = nIdx-nLeft;
190447 int *aRight = &aIdx[nLeft];
190449 SortByDimension(pRtree, aLeft, nLeft, iDim, aCell, aSpare);
190452 memcpy(aSpare, aLeft, sizeof(int)*nLeft);
190454 while( iLeft<nLeft || iRight<nRight ){
190459 if( (iLeft!=nLeft) && ((iRight==nRight)
190530 int nLeft;
190533 nLeft=RTREE_MINCELLS(pRtree);
190534 nLeft<=(nCell-RTREE_MINCELLS(pRtree));
190535 nLeft++
190546 if( kk<nLeft ){
190556 if( (nLeft==RTREE_MINCELLS(pRtree))
190560 iBestLeft = nLeft;
194852 int nLeft,
194859 res = ucol_strcoll(p, (UChar *)zLeft, nLeft/2, (UChar *)zRight, nRight/2);
207495 int nLeft, /* Number of bytes in lhs input */
207507 rc = sqlite3changegroup_add(pGrp, nLeft, pLeft);