• Home
  • Raw
  • Download

Lines Matching refs:nLeft

57069   int nLeft,                      /* IN: Elements in array *paLeft */
57080 assert( nLeft>0 && nRight>0 );
57081 while( iRight<nRight || iLeft<nLeft ){
57085 if( (iLeft<nLeft)
57095 if( iLeft<nLeft && aContent[aLeft[iLeft]]==dbpage ) iLeft++;
57097 assert( iLeft>=nLeft || aContent[aLeft[iLeft]]>dbpage );
91964 int nLeft, nRight;
91967 nLeft = sqlite3ExprVectorSize(pExpr->pLeft);
91970 if( nRight==nLeft ){
91977 if( nLeft!=nRight ){
93254 int nLeft = sqlite3ExprVectorSize(pLeft);
93261 if( nLeft!=sqlite3ExprVectorSize(pRight) ){
93286 assert( i>=0 && i<nLeft );
93300 if( i==nLeft-1 ){
93316 if( i==nLeft-2 ) opx = op;
132379 int nLeft; /* Number of elements on left side vector */
132665 && (nLeft = sqlite3ExprVectorSize(pExpr->pLeft))>1
132666 && sqlite3ExprVectorSize(pExpr->pRight)==nLeft
132671 for(i=0; i<nLeft; i++){
151169 int nLeft, /* Maximum difference in token positions */
151185 fts3PoslistPhraseMerge(&pTmp2, nLeft, 1, 0, pp2, pp1);
151398 char *aLeft, int nLeft, /* Left doclist */
151405 char *pEnd1 = &aLeft[nLeft];
152917 int nLeft;
152923 nLeft = p->doclist.nAll;
152931 nLeft = nList;
152936 pTab->bDescIdx, nDiff, pLeft, nLeft, &pRight, &nRight
165268 int nLeft; /* Tokens to the left of first highlight */
165272 for(nLeft=0; !(hlmask & ((u64)1 << nLeft)); nLeft++);
165274 nDesired = (nLeft-nRight)/2;
169236 int nLeft = nIdx/2;
169237 int nRight = nIdx-nLeft;
169239 int *aRight = &aIdx[nLeft];
169241 SortByDistance(aLeft, nLeft, aDistance, aSpare);
169244 memcpy(aSpare, aLeft, sizeof(int)*nLeft);
169247 while( iLeft<nLeft || iRight<nRight ){
169248 if( iLeft==nLeft ){
169305 int nLeft = nIdx/2;
169306 int nRight = nIdx-nLeft;
169308 int *aRight = &aIdx[nLeft];
169310 SortByDimension(pRtree, aLeft, nLeft, iDim, aCell, aSpare);
169313 memcpy(aSpare, aLeft, sizeof(int)*nLeft);
169315 while( iLeft<nLeft || iRight<nRight ){
169320 if( (iLeft!=nLeft) && ((iRight==nRight)
169391 int nLeft;
169394 nLeft=RTREE_MINCELLS(pRtree);
169395 nLeft<=(nCell-RTREE_MINCELLS(pRtree));
169396 nLeft++
169407 if( kk<nLeft ){
169417 if( (nLeft==RTREE_MINCELLS(pRtree))
169421 iBestLeft = nLeft;
171758 int nLeft,
171765 res = ucol_strcoll(p, (UChar *)zLeft, nLeft/2, (UChar *)zRight, nRight/2);
183559 int nLeft, /* Number of bytes in lhs input */
183571 rc = sqlite3changegroup_add(pGrp, nLeft, pLeft);