Home | History | Annotate | Download | only in orig

Lines Matching refs:iValue

10552     int iValue;            /* Non-negative integer value if EP_IntValue */
10602 #define EP_IntValue 0x0400 /* Integer value contained in u.iValue */
17110 ** Return the ceiling of the logarithm base 2 of iValue.
17119 static int memsys5Log(int iValue){
17121 for(iLog=0; (iLog<(int)((sizeof(int)*8)-1)) && (1<<iLog)<iValue; iLog++);
59410 sqlite3VdbeMemSetInt64(pVal, (i64)pExpr->u.iValue*negInt);
63832 SQLITE_API int sqlite3_bind_int(sqlite3_stmt *p, int i, int iValue){
63833 return sqlite3_bind_int64(p, i, (i64)iValue);
63835 SQLITE_API int sqlite3_bind_int64(sqlite3_stmt *pStmt, int i, sqlite_int64 iValue){
63840 sqlite3VdbeMemSetInt64(&p->aVar[i-1], iValue);
64588 i64 iValue;
64592 if( 0==sqlite3Atoi64(pRec->z, &iValue, pRec->n, enc) ){
64593 pRec->u.i = iValue;
73967 pE->u.iValue = iCol;
74766 ** into u.iValue and the EP_IntValue flag is set. No extra storage
74777 int iValue = 0;
74781 || sqlite3GetInt32(pToken->z, &iValue)==0 ){
74783 assert( iValue>=0 );
74793 pNew->u.iValue = iValue;
75011 assert( !ExprHasProperty(p, EP_IntValue) || p->u.iValue>=0 );
75609 *pValue = p->u.iValue;
76362 int i = pExpr->u.iValue;
77376 sqlite3ExplainPrintf(pOut, "%d", pExpr->u.iValue);
78121 if( !ExprHasProperty(pB, EP_IntValue) || pA->u.iValue!=pB->u.iValue ){
92095 static const u8 iValue[] = {1, 0, 0, 0, 1, 1, 2};
92103 return iValue[i];
96735 pNew->u.iValue = i;