Lines Matching refs:val
21082 unsigned long val;
21083 __asm__ __volatile__ ("rdtsc" : "=A" (val));
21084 return val;
23624 int val = 0;
23630 val = 0;
23635 val = val*10 + *zDate - '0';
23638 if( val<(int)min || val>(int)max || (nextC!=0 && nextC!=*zDate) ){
23641 *va_arg(ap,int*) = val;
30059 ** "*val" is a double such that 0.1 <= *val < 10.0
30060 ** Return the ascii code for the leading digit of *val, then
30061 ** multiply "*val" by 10.0 to renormalize.
30064 ** input: *val = 3.14159
30065 ** output: *val = 1.4159 function return = '3'
30071 static char et_getdigit(LONGDOUBLE_TYPE *val, int *cnt){
30076 digit = (int)*val;
30079 *val = (*val - d)*10.0;
56628 static int write32bits(sqlite3_file *fd, i64 offset, u32 val){
56630 put32bits(ac, val);
81194 double val = (double)0;
81195 sqlite3AtoF(pMem->z, &val, pMem->n, pMem->enc);
81196 return val;
81461 static SQLITE_NOINLINE void vdbeReleaseAndSetInt64(Mem *pMem, i64 val){
81463 pMem->u.i = val;
81468 ** Delete any previous value and set the value stored in *pMem to val,
81471 SQLITE_PRIVATE void sqlite3VdbeMemSetInt64(Mem *pMem, i64 val){
81473 vdbeReleaseAndSetInt64(pMem, val);
81475 pMem->u.i = val;
81504 ** Delete any previous value and set the value stored in *pMem to val,
81507 SQLITE_PRIVATE void sqlite3VdbeMemSetDouble(Mem *pMem, double val){
81509 if( !sqlite3IsNaN(val) ){
81510 pMem->u.r = val;
83675 SQLITE_PRIVATE void sqlite3VdbeChangeP1(Vdbe *p, int addr, int val){
83677 sqlite3VdbeGetOp(p,addr)->p1 = val;
83679 SQLITE_PRIVATE void sqlite3VdbeChangeP2(Vdbe *p, int addr, int val){
83681 sqlite3VdbeGetOp(p,addr)->p2 = val;
83683 SQLITE_PRIVATE void sqlite3VdbeChangeP3(Vdbe *p, int addr, int val){
83685 sqlite3VdbeGetOp(p,addr)->p3 = val;
89120 const void *val;
89121 val = sqlite3_value_blob( columnMem(pStmt,i) );
89127 return val;
89130 int val = sqlite3_value_bytes( columnMem(pStmt,i) );
89132 return val;
89135 int val = sqlite3_value_bytes16( columnMem(pStmt,i) );
89137 return val;
89140 double val = sqlite3_value_double( columnMem(pStmt,i) );
89142 return val;
89145 int val = sqlite3_value_int( columnMem(pStmt,i) );
89147 return val;
89150 sqlite_int64 val = sqlite3_value_int64( columnMem(pStmt,i) );
89152 return val;
89155 const unsigned char *val = sqlite3_value_text( columnMem(pStmt,i) );
89157 return val;
89170 const void *val = sqlite3_value_text16( columnMem(pStmt,i) );
89172 return val;
97377 i64 val;
97382 || sqlite3RowSetNext((RowSet*)pIn1->z, &val)==0
97391 sqlite3VdbeMemSetInt64(&aMem[pOp->p3], val);
129044 pToplevel->nMem +=2; /* Rowid in sqlite_sequence + orig max val */
165089 int val = (pFunc->zName==leadName ? 1 : -1);
165090 sqlite3VdbeAddOp2(v, OP_AddImm, tmpReg, val);
202222 sqlite3_rtree_dbl val; /* Coordinate value convert to a double */
202237 RTREE_DECODE_COORD(eInt, pCellData, val);
202238 /* val now holds the lower bound of the coordinate pair */
202239 if( p->u.rValue>=val ){
202241 RTREE_DECODE_COORD(eInt, pCellData, val);
202242 /* val now holds the upper bound of the coordinate pair */
202243 if( p->u.rValue<=val ) return;
202248 RTREE_DECODE_COORD(eInt, pCellData, val);
202249 /* val now holds the lower bound of the coordinate pair */
202250 if( p->u.rValue>=val ) return;
202255 RTREE_DECODE_COORD(eInt, pCellData, val);
202256 /* val now holds the upper bound of the coordinate pair */
202257 if( p->u.rValue<=val ) return;
202268 ** The constraint is of the form: xN op $val
202271 ** pCellData. $val is given by p->u.rValue.
212382 ** "PRAGMA main.$zPragma = $val"
212384 ** where $val is the value returned by the first PRAGMA invocation.
232456 i64 val = sqlite3_column_int(pIdxSelect, 0);
232457 iPg = (int)(val>>1);
232458 bDlidx = (val & 0x0001);
239246 Fts5Buffer val;
239248 memset(&val, 0, sizeof(Fts5Buffer));
239256 sqlite3Fts5BufferAppendVarint(&rc, &val, nByte);
239264 sqlite3Fts5BufferAppendBlob(&rc, &val, nPoslist, pPoslist);
239275 sqlite3Fts5BufferAppendVarint(&rc, &val, nByte);
239283 sqlite3Fts5BufferAppendBlob(&rc, &val, nPoslist, pPoslist);
239291 sqlite3_result_blob(pCtx, val.p, val.n, sqlite3_free);
244902 CODEC_STATIC int sqlite3CodecIfMemset(unsigned char *input, unsigned char val, int len){
244905 if(input[i] != val){