• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/sqlite-3.6.22/

Lines Matching defs:pValue

6921 SQLITE_PRIVATE void sqlite3BtreeGetMeta(Btree *pBtree, int idx, u32 *pValue);
18910 ** *pValue to that integer and return true. Otherwise return false.
18916 SQLITE_PRIVATE int sqlite3GetInt32(const char *zNum, int *pValue){
18945 *pValue = (int)v;
50507 SQLITE_API void sqlite3_result_value(sqlite3_context *pCtx, sqlite3_value *pValue){
50509 sqlite3VdbeMemCopy(&pCtx->s, pValue);
51283 SQLITE_API int sqlite3_bind_value(sqlite3_stmt *pStmt, int i, const sqlite3_value *pValue){
51285 switch( pValue->type ){
51287 rc = sqlite3_bind_int64(pStmt, i, pValue->u.i);
51291 rc = sqlite3_bind_double(pStmt, i, pValue->r);
51295 if( pValue->flags & MEM_Zero ){
51296 rc = sqlite3_bind_zeroblob(pStmt, i, pValue->u.nZero);
51298 rc = sqlite3_bind_blob(pStmt, i, pValue->z, pValue->n,SQLITE_TRANSIENT);
51303 rc = bindText(pStmt,i, pValue->z, pValue->n, SQLITE_TRANSIENT,
51304 pValue->enc);
61426 ** in *pValue. If the expression is not an integer or if it is too big
61427 ** to fit in a signed 32-bit integer, return 0 and leave *pValue unchanged.
61429 SQLITE_PRIVATE int sqlite3ExprIsInteger(Expr *p, int *pValue){
61432 *pValue = p->u.iValue;
61437 rc = sqlite3GetInt32(p->u.zToken, pValue);
61442 rc = sqlite3ExprIsInteger(p->pLeft, pValue);
61448 *pValue = -v;
61460 p->u.iValue = *pValue;
76955 Token *pValue, /* Token for <value>, or NULL */
76985 zRight = sqlite3MPrintf(db, "-%T", pValue);
76987 zRight = sqlite3NameFromToken(db, pValue);
84628 sqlite3_value *pValue;
84634 pCol->affinity, &pValue);
84635 if( pValue ){
84636 sqlite3VdbeChangeP4(v, -1, (const char *)pValue, P4_MEM);
90694 static void spanExpr(ExprSpan *pOut, Parse *pParse, int op, Token *pValue){
90695 pOut->pExpr = sqlite3PExpr(pParse, op, 0, 0, pValue);
90696 pOut->zStart = pValue->z;
90697 pOut->zEnd = &pValue->z[pValue->n];