Home | History | Annotate | Download | only in amalgamation

Lines Matching defs:pRhs

100198   sqlite3_value *pRhs = 0;  /* VALUE on right-hand side of pTerm */
100199 int iLower, iUpper; /* Range of histogram regions containing pRhs */
100207 rc = valueFromExpr(pParse, pExpr, aff, &pRhs);
100210 pRhs = sqlite3ValueNew(pParse->db);
100212 if( pRhs==0 ) return SQLITE_NOTFOUND;
100213 rc = whereRangeRegion(pParse, p, pRhs, 0, &iLower);
100215 rc = whereRangeRegion(pParse, p, pRhs, 1, &iUpper);
100227 sqlite3ValueFree(pRhs);
100256 int iLower, iUpper; /* Range of histogram regions containing pRhs */
121235 static int fts3SegReaderCmp(Fts3SegReader *pLhs, Fts3SegReader *pRhs){
121237 if( pLhs->aNode && pRhs->aNode ){
121238 int rc2 = pLhs->nTerm - pRhs->nTerm;
121240 rc = memcmp(pLhs->zTerm, pRhs->zTerm, pLhs->nTerm);
121242 rc = memcmp(pLhs->zTerm, pRhs->zTerm, pRhs->nTerm);
121248 rc = (pLhs->aNode==0) - (pRhs->aNode==0);
121251 rc = pRhs->iIdx - pLhs->iIdx;
121268 static int fts3SegReaderDoclistCmp(Fts3SegReader *pLhs, Fts3SegReader *pRhs){
121269 int rc = (pLhs->pOffsetList==0)-(pRhs->pOffsetList==0);
121271 if( pLhs->iDocid==pRhs->iDocid ){
121272 rc = pRhs->iIdx - pLhs->iIdx;
121274 rc = (pLhs->iDocid > pRhs->iDocid) ? 1 : -1;
121277 assert( pLhs->aNode && pRhs->aNode );