Lines Matching refs:pVal
186 sqlite3_value *pVal = 0; in isLikeOrGlob() local
205 pVal = sqlite3VdbeGetBoundValue(pReprepare, iCol, SQLITE_AFF_BLOB); in isLikeOrGlob()
206 if( pVal && sqlite3_value_type(pVal)==SQLITE_TEXT ){ in isLikeOrGlob()
207 z = sqlite3_value_text(pVal); in isLikeOrGlob()
286 sqlite3ValueFree(pVal); in isLikeOrGlob()
318 sqlite3ValueFree(pVal); in isLikeOrGlob()
1564 Expr *pVal = sqlite3Expr(db, TK_INTEGER, 0); in whereAddLimitExpr() local
1565 if( pVal==0 ) return; in whereAddLimitExpr()
1566 ExprSetProperty(pVal, EP_IntValue); in whereAddLimitExpr()
1567 pVal->u.iValue = iVal; in whereAddLimitExpr()
1568 pNew = sqlite3PExpr(pParse, TK_MATCH, 0, pVal); in whereAddLimitExpr()
1570 Expr *pVal = sqlite3Expr(db, TK_REGISTER, 0); in whereAddLimitExpr() local
1571 if( pVal==0 ) return; in whereAddLimitExpr()
1572 pVal->iTable = iReg; in whereAddLimitExpr()
1573 pNew = sqlite3PExpr(pParse, TK_MATCH, 0, pVal); in whereAddLimitExpr()