Lines Matching refs:iValue
18317 int iValue; /* Non-negative integer value if EP_IntValue */
18384 #define EP_IntValue 0x000800 /* Integer value contained in u.iValue */
27418 ** Return the ceiling of the logarithm base 2 of iValue.
27427 static int memsys5Log(int iValue){
27429 for(iLog=0; (iLog<(int)((sizeof(int)*8)-1)) && (1<<iLog)<iValue; iLog++);
31872 sqlite3TreeViewLine(pView, "%d", pExpr->u.iValue);
35238 ** int iValue; // Value for this entry
82155 sqlite3VdbeMemSetInt64(pVal, (i64)pExpr->u.iValue*negInt);
84216 sqlite3_str_appendf(p, "%d", pExpr->u.iValue);
89449 SQLITE_API int sqlite3_bind_int(sqlite3_stmt *p, int i, int iValue){
89450 return sqlite3_bind_int64(p, i, (i64)iValue);
89452 SQLITE_API int sqlite3_bind_int64(sqlite3_stmt *pStmt, int i, sqlite_int64 iValue){
89457 sqlite3VdbeMemSetInt64(&p->aVar[i-1], iValue);
90587 i64 iValue;
90588 iValue = sqlite3RealToI64(rValue);
90589 if( sqlite3RealSameAsInt(rValue,iValue) ){
90590 *piValue = iValue;
105179 pNew->u.iValue = iCol;
106648 ** into u.iValue and the EP_IntValue flag is set. No extra storage
106659 int iValue = 0;
106664 || sqlite3GetInt32(pToken->z, &iValue)==0 ){
106666 assert( iValue>=0 );
106676 pNew->flags |= EP_IntValue|EP_Leaf|(iValue?EP_IsTrue:EP_IsFalse);
106677 pNew->u.iValue = iValue;
107033 assert( !ExprUseUValue(p) || p->u.iValue>=0 );
108271 *pValue = p->u.iValue;
109507 int i = pExpr->u.iValue;
110203 tempX.u.iValue = 0;
111414 if( (pA->flags&pB->flags&EP_IntValue)!=0 && pA->u.iValue==pB->u.iValue ){
134287 static const u8 iValue[] = {1, 0, 0, 0, 1, 1, 3, 2};
134296 && (!omitFull || iValue[i]<=1)
134298 return iValue[i];
141721 pNew->u.iValue = i;
142082 pExpr->u.iValue = sqlite3ExprTruthValue(pExpr);
156264 pVal->u.iValue = iVal;