Lines Matching refs:iValue
10552 int iValue; /* Non-negative integer value if EP_IntValue */ member
17119 static int memsys5Log(int iValue){ in memsys5Log() argument
17121 for(iLog=0; (iLog<(int)((sizeof(int)*8)-1)) && (1<<iLog)<iValue; iLog++); in memsys5Log()
59421 sqlite3VdbeMemSetInt64(pVal, (i64)pExpr->u.iValue*negInt);
63843 SQLITE_API int sqlite3_bind_int(sqlite3_stmt *p, int i, int iValue){
63844 return sqlite3_bind_int64(p, i, (i64)iValue);
63846 SQLITE_API int sqlite3_bind_int64(sqlite3_stmt *pStmt, int i, sqlite_int64 iValue){
63851 sqlite3VdbeMemSetInt64(&p->aVar[i-1], iValue);
64599 i64 iValue;
64603 if( 0==sqlite3Atoi64(pRec->z, &iValue, pRec->n, enc) ){
64604 pRec->u.i = iValue;
73978 pE->u.iValue = iCol;
74788 int iValue = 0;
74792 || sqlite3GetInt32(pToken->z, &iValue)==0 ){
74794 assert( iValue>=0 );
74804 pNew->u.iValue = iValue;
75022 assert( !ExprHasProperty(p, EP_IntValue) || p->u.iValue>=0 );
75620 *pValue = p->u.iValue;
76373 int i = pExpr->u.iValue;
77387 sqlite3ExplainPrintf(pOut, "%d", pExpr->u.iValue);
78132 if( !ExprHasProperty(pB, EP_IntValue) || pA->u.iValue!=pB->u.iValue ){
92106 static const u8 iValue[] = {1, 0, 0, 0, 1, 1, 2};
92114 return iValue[i];
96746 pNew->u.iValue = i;