Home
last modified time | relevance | path

Searched refs:pL (Results 1 – 2 of 2) sorted by relevance

/sqlite-3.40.0/src/
H A Dexpr.c659 Expr *pL = 0, *pR = 0; in codeVectorCompare() local
663 r1 = exprVectorRegister(pParse, pLeft, i, regLeft, &pL, &regFree1); in codeVectorCompare()
666 codeCompare(pParse, pL, pR, opx, r1, r2, addrDone, p5, isCommuted); in codeVectorCompare()
5537 sqlite3_value *pL, *pR = 0; in exprCompareVariable() local
5543 pL = sqlite3VdbeGetBoundValue(pParse->pReprepare, iVar, SQLITE_AFF_BLOB); in exprCompareVariable()
5544 if( pL ){ in exprCompareVariable()
5545 if( sqlite3_value_type(pL)==SQLITE_TEXT ){ in exprCompareVariable()
5546 sqlite3_value_text(pL); /* Make sure the encoding is UTF-8 */ in exprCompareVariable()
5548 res = 0==sqlite3MemCompare(pL, pR, 0); in exprCompareVariable()
5551 sqlite3ValueFree(pL); in exprCompareVariable()
/sqlite-3.40.0/ext/fts3/
H A Dfts3.c4755 char *pL = a[i].pList; in fts3EvalIncrPhraseNext() local
4759 int res = fts3PoslistPhraseMerge(&pOut, nDist, 0, 1, &pL, &pR); in fts3EvalIncrPhraseNext()