Home | History | Annotate | Download | only in dist

Lines Matching defs:iValue

9771     int iValue;            /* Integer value if EP_IntValue */
9821 #define EP_IntValue 0x0400 /* Integer value contained in u.iValue */
15991 ** Return the ceiling of the logarithm base 2 of iValue.
16000 static int memsys5Log(int iValue){
16002 for(iLog=0; (1<<iLog)<iValue; iLog++);
55223 sqlite3VdbeMemSetInt64(pVal, (i64)pExpr->u.iValue*negInt);
59529 SQLITE_API int sqlite3_bind_int(sqlite3_stmt *p, int i, int iValue){
59530 return sqlite3_bind_int64(p, i, (i64)iValue);
59532 SQLITE_API int sqlite3_bind_int64(sqlite3_stmt *pStmt, int i, sqlite_int64 iValue){
59537 sqlite3VdbeMemSetInt64(&p->aVar[i-1], iValue);
60175 i64 iValue;
60179 if( 0==sqlite3Atoi64(pRec->z, &iValue, pRec->n, enc) ){
60180 pRec->u.i = iValue;
68397 pE->u.iValue = iCol;
69182 ** into u.iValue and the EP_IntValue flag is set. No extra storage
69193 int iValue = 0;
69197 || sqlite3GetInt32(pToken->z, &iValue)==0 ){
69208 pNew->u.iValue = iValue;
70009 *pValue = p->u.iValue;
70037 p->u.iValue = *pValue;
70762 int i = pExpr->u.iValue;
72256 if( !ExprHasProperty(pB, EP_IntValue) || pA->u.iValue!=pB->u.iValue ){
85511 static const u8 iValue[] = {1, 0, 0, 0, 1, 1, 2};
85519 return iValue[i];
90044 pNew->u.iValue = i;