• Home
  • Raw
  • Download

Lines Matching refs:nRight

60954   int nRight = *pnRight;
60957 assert( nLeft>0 && nRight>0 );
60958 while( iRight<nRight || iLeft<nLeft ){
60963 && (iRight>=nRight || aContent[aLeft[iLeft]]<aContent[aRight[iRight]])
60975 assert( iRight>=nRight || aContent[aRight[iRight]]>dbpage );
98851 int nLeft, nRight;
98856 nRight = sqlite3ExprVectorSize(pExpr->x.pList->a[0].pExpr);
98857 if( nRight==nLeft ){
98858 nRight = sqlite3ExprVectorSize(pExpr->x.pList->a[1].pExpr);
98862 nRight = sqlite3ExprVectorSize(pExpr->pRight);
98864 if( nLeft!=nRight ){
169326 int nRight, /* Maximum difference in token positions */
169339 fts3PoslistPhraseMerge(&pTmp1, nRight, 0, 0, pp1, pp2);
171096 int nRight;
171103 nRight = nList;
171107 nRight = p->doclist.nAll;
171114 pTab->bDescIdx, nDiff, pLeft, nLeft, &pRight, &nRight
171118 p->doclist.nAll = nRight;
183553 int nRight; /* Tokens to the right of last highlight */
183557 for(nRight=0; !(hlmask & ((u64)1 << (nSnippet-1-nRight))); nRight++);
183558 assert( (nSnippet-1-nRight)<=63 && (nSnippet-1-nRight)>=0 );
183559 nDesired = (nLeft-nRight)/2;
190376 int nRight = nIdx-nLeft;
190381 SortByDistance(aRight, nRight, aDistance, aSpare);
190386 while( iLeft<nLeft || iRight<nRight ){
190390 }else if( iRight==nRight ){
190445 int nRight = nIdx-nLeft;
190450 SortByDimension(pRtree, aRight, nRight, iDim, aCell, aSpare);
190454 while( iLeft<nLeft || iRight<nRight ){
190459 if( (iLeft!=nLeft) && ((iRight==nRight)
194854 int nRight,
194859 res = ucol_strcoll(p, (UChar *)zLeft, nLeft/2, (UChar *)zRight, nRight/2);
207497 int nRight /* Number of bytes in rhs input */,
207510 rc = sqlite3changegroup_add(pGrp, nRight, pRight);
216938 const u8 *pRight, int nRight /* Right hand side of comparison */
216940 int nCmp = MIN(pLeft->n, nRight);
216942 return (res==0 ? (pLeft->n - nRight) : res);