Home | History | Annotate | Download | only in dist

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++);
59438 sqlite3VdbeMemSetInt64(pVal, (i64)pExpr->u.iValue*negInt);
63860 SQLITE_API int sqlite3_bind_int(sqlite3_stmt *p, int i, int iValue){
63861 return sqlite3_bind_int64(p, i, (i64)iValue);
63863 SQLITE_API int sqlite3_bind_int64(sqlite3_stmt *pStmt, int i, sqlite_int64 iValue){
63868 sqlite3VdbeMemSetInt64(&p->aVar[i-1], iValue);
64616 i64 iValue;
64620 if( 0==sqlite3Atoi64(pRec->z, &iValue, pRec->n, enc) ){
64621 pRec->u.i = iValue;
74003 pE->u.iValue = iCol;
74802 ** into u.iValue and the EP_IntValue flag is set. No extra storage
74813 int iValue = 0;
74817 || sqlite3GetInt32(pToken->z, &iValue)==0 ){
74819 assert( iValue>=0 );
74829 pNew->u.iValue = iValue;
75047 assert( !ExprHasProperty(p, EP_IntValue) || p->u.iValue>=0 );
75645 *pValue = p->u.iValue;
76398 int i = pExpr->u.iValue;
77412 sqlite3ExplainPrintf(pOut, "%d", pExpr->u.iValue);
78157 if( !ExprHasProperty(pB, EP_IntValue) || pA->u.iValue!=pB->u.iValue ){
92131 static const u8 iValue[] = {1, 0, 0, 0, 1, 1, 2};
92139 return iValue[i];
96771 pNew->u.iValue = i;