| /sqlite-3.40.0/ext/misc/ |
| H A D | wholenumber.c | 37 sqlite3_int64 iValue; /* Current value */ member 93 pCur->iValue++; in wholenumberNext() 106 sqlite3_result_int64(ctx, pCur->iValue); in wholenumberColumn() 115 *pRowid = pCur->iValue; in wholenumberRowid() 125 return pCur->iValue>pCur->mxValue || pCur->iValue==0; in wholenumberEof() 154 pCur->iValue = 1; in wholenumberFilter() 158 if( v>pCur->iValue && v<=pCur->mxValue ) pCur->iValue = v; in wholenumberFilter() 163 if( v>=pCur->iValue && v<pCur->mxValue ) pCur->mxValue = v; in wholenumberFilter()
|
| H A D | series.c | 88 sqlite3_int64 iValue; /* Current value ("value") */ member 174 pCur->iValue -= pCur->iStep; in seriesNext() 176 pCur->iValue += pCur->iStep; in seriesNext() 197 default: x = pCur->iValue; break; in seriesColumn() 221 return pCur->iValue < pCur->mnValue; in seriesEof() 223 return pCur->iValue > pCur->mxValue; in seriesEof() 297 pCur->iValue = pCur->mxValue; in seriesFilter() 299 pCur->iValue -= (pCur->mxValue - pCur->mnValue)%pCur->iStep; in seriesFilter() 303 pCur->iValue = pCur->mnValue; in seriesFilter()
|
| /sqlite-3.40.0/tool/ |
| H A D | fuzzershell.c | 381 sqlite3_int64 iValue; /* Current value ("value") */ member 461 pCur->iValue -= pCur->iStep; in seriesNext() 463 pCur->iValue += pCur->iStep; in seriesNext() 484 default: x = pCur->iValue; break; in seriesColumn() 507 return pCur->iValue < pCur->mnValue; in seriesEof() 509 return pCur->iValue > pCur->mxValue; in seriesEof() 567 pCur->iValue = pCur->mxValue; in seriesFilter() 569 pCur->iValue -= (pCur->mxValue - pCur->mnValue)%pCur->iStep; in seriesFilter() 573 pCur->iValue = pCur->mnValue; in seriesFilter()
|
| H A D | lemon.c | 1618 static void stats_line(const char *zLabel, int iValue){ in stats_line() argument 1622 iValue); in stats_line()
|
| /sqlite-3.40.0/src/ |
| H A D | test_malloc.c | 1293 int rc, iValue, mxValue; in test_status() local 1327 iValue = 0; in test_status() 1329 rc = sqlite3_status(op, &iValue, &mxValue, resetFlag); in test_status() 1332 Tcl_ListObjAppendElement(0, pResult, Tcl_NewIntObj(iValue)); in test_status() 1350 int rc, iValue, mxValue; in test_db_status() local 1392 iValue = 0; in test_db_status() 1394 rc = sqlite3_db_status(db, op, &iValue, &mxValue, resetFlag); in test_db_status() 1397 Tcl_ListObjAppendElement(0, pResult, Tcl_NewIntObj(iValue)); in test_db_status()
|
| H A D | test_mutex.c | 350 int iValue; in test_config() member 371 i = aOpt[i].iValue; in test_config()
|
| H A D | mem5.c | 443 static int memsys5Log(int iValue){ in memsys5Log() argument 445 for(iLog=0; (iLog<(int)((sizeof(int)*8)-1)) && (1<<iLog)<iValue; iLog++); in memsys5Log()
|
| H A D | test_vfs.c | 1307 int iValue; in testvfs_obj_cmd() member 1350 if( aFlag[idx].iValue<0 && nFlags>1 ){ in testvfs_obj_cmd() 1354 iNew |= aFlag[idx].iValue; in testvfs_obj_cmd() 1362 if( p->iDevchar & aFlag[iFlag].iValue ){ in testvfs_obj_cmd()
|
| H A D | test_multiplex.c | 1305 int iValue = 0; in test_multiplex_control() local 1339 if( Tcl_GetIntFromObj(interp, objv[4], &iValue) ){ in test_multiplex_control() 1342 pArg = (void *)&iValue; in test_multiplex_control()
|
| H A D | expr.c | 846 int iValue = 0; in sqlite3ExprAlloc() local 851 || sqlite3GetInt32(pToken->z, &iValue)==0 ){ in sqlite3ExprAlloc() 853 assert( iValue>=0 ); in sqlite3ExprAlloc() 863 pNew->flags |= EP_IntValue|EP_Leaf|(iValue?EP_IsTrue:EP_IsFalse); in sqlite3ExprAlloc() 864 pNew->u.iValue = iValue; in sqlite3ExprAlloc() 1220 assert( !ExprUseUValue(p) || p->u.iValue>=0 ); in sqlite3ExprDeleteNN() 2458 *pValue = p->u.iValue; in sqlite3ExprIsInteger() 3694 int i = pExpr->u.iValue; in codeInteger() 4390 tempX.u.iValue = 0; in sqlite3ExprCodeTarget() 5601 if( (pA->flags&pB->flags&EP_IntValue)!=0 && pA->u.iValue==pB->u.iValue ){ in sqlite3ExprCompare()
|
| H A D | test6.c | 729 int iValue; in processDevSymArgs() member 798 iDc |= aFlag[iChoice].iValue; in processDevSymArgs()
|
| H A D | vdbeapi.c | 1548 int sqlite3_bind_int(sqlite3_stmt *p, int i, int iValue){ in sqlite3_bind_int() argument 1549 return sqlite3_bind_int64(p, i, (i64)iValue); in sqlite3_bind_int() 1551 int sqlite3_bind_int64(sqlite3_stmt *pStmt, int i, sqlite_int64 iValue){ in sqlite3_bind_int64() argument 1556 sqlite3VdbeMemSetInt64(&p->aVar[i-1], iValue); in sqlite3_bind_int64()
|
| H A D | pragma.c | 49 static const u8 iValue[] = {1, 0, 0, 0, 1, 1, 3, 2}; in getSafetyLevel() local 58 && (!omitFull || iValue[i]<=1) in getSafetyLevel() 60 return iValue[i]; in getSafetyLevel()
|
| H A D | treeview.c | 541 sqlite3TreeViewLine(pView, "%d", pExpr->u.iValue); in sqlite3TreeViewExpr()
|
| H A D | vdbe.c | 317 i64 iValue; in alsoAnInt() local 318 iValue = sqlite3RealToI64(rValue); in alsoAnInt() 319 if( sqlite3RealSameAsInt(rValue,iValue) ){ in alsoAnInt() 320 *piValue = iValue; in alsoAnInt()
|
| H A D | whereexpr.c | 1567 pVal->u.iValue = iVal; in whereAddLimitExpr()
|
| H A D | vdbemem.c | 1607 sqlite3VdbeMemSetInt64(pVal, (i64)pExpr->u.iValue*negInt); in valueFromExpr()
|
| H A D | resolve.c | 1504 pNew->u.iValue = iCol; in resolveCompoundOrderBy()
|
| H A D | test1.c | 2151 int iValue; in test_stmt_status() local 2184 iValue = sqlite3_stmt_status(pStmt, op, resetFlag); in test_stmt_status() 2185 Tcl_SetObjResult(interp, Tcl_NewIntObj(iValue)); in test_stmt_status()
|
| H A D | sqliteInt.h | 2839 int iValue; /* Non-negative integer value if EP_IntValue */ member
|
| H A D | select.c | 3471 pNew->u.iValue = i; in multiSelectOrderBy() 3832 pExpr->u.iValue = sqlite3ExprTruthValue(pExpr); in substExpr()
|
| H A D | vdbeaux.c | 1682 sqlite3_str_appendf(p, "%d", pExpr->u.iValue); in displayP4Expr()
|