Lines Matching defs:pVal
8249 sqlite3_value *pVal,
8254 const char *z = (const char*)sqlite3_value_text(pVal);
8259 mode = (unsigned int)sqlite3_value_int(pVal);
8358 ** return the current time. Otherwise, return the value stored in (*pVal)
8361 static u32 zipfileGetTime(sqlite3_value *pVal){
8362 if( pVal==0 || sqlite3_value_type(pVal)==SQLITE_NULL ){
8365 return (u32)sqlite3_value_int64(pVal);
9957 sqlite3_value *pVal;
9958 pVal = sqlite3_column_value(pCsr->pData, i);
9959 if( pVal ){
9960 sqlite3_result_value(ctx, pVal);
11780 ** Read a varint. Put the value in *pVal and return the number of bytes.
11782 static int dbdataGetVarint(const u8 *z, sqlite3_int64 *pVal){
11787 if( (z[i]&0x80)==0 ){ *pVal = (sqlite3_int64)u; return i+1; }
11790 *pVal = (sqlite3_int64)u;
11799 static int dbdataGetVarintU32(const u8 *z, sqlite3_int64 *pVal){
11803 *pVal = val;
13154 ** Bind the value pVal to parameter iBind of statement pStmt. Leave an
13162 sqlite3_value *pVal
13165 int rc = sqlite3_bind_value(pStmt, iBind, pVal);
14176 sqlite3_value *pVal = sqlite3_column_value(pPageData, 2);
14177 apVal[iField] = sqlite3_value_dup(pVal);
14376 sqlite3_value *pVal = sqlite3_column_value(pSel, 3);
14432 apVal[iField] = sqlite3_value_dup( pVal );
14661 ** Decode an SQLite varint from buffer a[]. Write the decoded value to (*pVal)
14664 static int recoverGetVarint(const u8 *a, i64 *pVal){
14669 if( (a[i]&0x80)==0 ){ *pVal = (sqlite3_int64)u; return i+1; }
14672 *pVal = (sqlite3_int64)u;