Lines Matching defs:iValue

18983     int iValue;            /* Non-negative integer value if EP_IntValue */
19050 #define EP_IntValue 0x000800 /* Integer value contained in u.iValue */
28592 ** Return the ceiling of the logarithm base 2 of iValue.
28601 static int memsys5Log(int iValue){
28603 for(iLog=0; (iLog<(int)((sizeof(int)*8)-1)) && (1<<iLog)<iValue; iLog++);
33140 sqlite3TreeViewLine(pView, "%d", pExpr->u.iValue);
35247 int iValue;
35267 if( p->op==TK_INTEGER && sqlite3GetInt32(p->u.zToken, &iValue) ){
35268 p->u.iValue = iValue;
36717 ** int iValue; // Value for this entry
84443 sqlite3VdbeMemSetInt64(pVal, (i64)pExpr->u.iValue*negInt);
86664 sqlite3_str_appendf(p, "%d", pExpr->u.iValue);
92111 SQLITE_API int sqlite3_bind_int(sqlite3_stmt *p, int i, int iValue){
92112 return sqlite3_bind_int64(p, i, (i64)iValue);
92114 SQLITE_API int sqlite3_bind_int64(sqlite3_stmt *pStmt, int i, sqlite_int64 iValue){
92119 sqlite3VdbeMemSetInt64(&p->aVar[i-1], iValue);
93434 i64 iValue;
93435 iValue = sqlite3RealToI64(rValue);
93436 if( sqlite3RealSameAsInt(rValue,iValue) ){
93437 *piValue = iValue;
107782 pExpr->u.iValue = (pExpr->op==TK_NOTNULL);
108368 pNew->u.iValue = iCol;
109932 ** into u.iValue and the EP_IntValue flag is set. No extra storage
109944 int iValue = 0;
109949 || sqlite3GetInt32(pToken->z, &iValue)==0 ){
109951 assert( iValue>=0 );
109961 pNew->flags |= EP_IntValue|EP_Leaf|(iValue?EP_IsTrue:EP_IsFalse);
109962 pNew->u.iValue = iValue;
110383 assert( !ExprUseUValue(p) || p->u.iValue>=0 );
111814 *pValue = p->u.iValue;
113079 int i = pExpr->u.iValue;
113845 tempX.u.iValue = 0;
115068 if( (pA->flags&pB->flags&EP_IntValue)!=0 && pA->u.iValue==pB->u.iValue ){
138801 static const u8 iValue[] = {1, 0, 0, 0, 1, 1, 3, 2};
138810 && (!omitFull || iValue[i]<=1)
138812 return iValue[i];
146430 pNew->u.iValue = i;
146795 pExpr->u.iValue = sqlite3ExprTruthValue(pExpr);
161818 pVal->u.iValue = iVal;
209623 u32 iValue; /* Start of the value */
209830 pParent->iValue = i;
209851 u32 iVal = pParent->iValue;
210156 p->aParent[0].iValue = i;