Lines Matching refs:MEM_IntReal
46 assert( ISPOWEROF2(p->flags & (MEM_Int|MEM_Real|MEM_IntReal)) ); in sqlite3VdbeCheckMemInvariants()
108 assert( p->flags & (MEM_Int|MEM_Real|MEM_IntReal) ); in vdbeMemRenderNum()
124 (p->flags & MEM_IntReal)!=0 ? (double)p->u.i : p->u.r); in vdbeMemRenderNum()
169 if( (p->flags & (MEM_Int|MEM_Real|MEM_IntReal))==0 ) return 1; in sqlite3VdbeMemValidStrRep()
309 pMem->flags &= (MEM_Null|MEM_Int|MEM_Real|MEM_IntReal); in sqlite3VdbeMemClearAndResize()
427 assert( pMem->flags&(MEM_Int|MEM_Real|MEM_IntReal) ); in sqlite3VdbeMemStringify()
442 if( bForce ) pMem->flags &= ~(MEM_Int|MEM_Real|MEM_IntReal); in sqlite3VdbeMemStringify()
626 if( flags & (MEM_Int|MEM_IntReal) ){ in sqlite3VdbeIntValue()
627 testcase( flags & MEM_IntReal ); in sqlite3VdbeIntValue()
656 }else if( pMem->flags & (MEM_Int|MEM_IntReal) ){ in sqlite3VdbeRealValue()
657 testcase( pMem->flags & MEM_IntReal ); in sqlite3VdbeRealValue()
672 testcase( pMem->flags & MEM_IntReal ); in sqlite3VdbeBooleanValue()
673 if( pMem->flags & (MEM_Int|MEM_IntReal) ) return pMem->u.i!=0; in sqlite3VdbeBooleanValue()
774 testcase( pMem->flags & MEM_IntReal ); in sqlite3VdbeMemNumerify()
776 if( (pMem->flags & (MEM_Int|MEM_Real|MEM_IntReal|MEM_Null))==0 ){ in sqlite3VdbeMemNumerify()
791 assert( (pMem->flags & (MEM_Int|MEM_Real|MEM_IntReal|MEM_Null))!=0 ); in sqlite3VdbeMemNumerify()
834 pMem->flags &= ~(MEM_Int|MEM_Real|MEM_IntReal|MEM_Blob|MEM_Zero); in sqlite3VdbeMemCast()
1042 assert( (mFlags&(MEM_Int|MEM_IntReal))==0 || pMem->u.i==pX->u.i ); in sqlite3VdbeMemAboutToChange()
1618 assert( (pVal->flags & MEM_IntReal)==0 ); in valueFromExpr()
1619 if( pVal->flags & (MEM_Int|MEM_IntReal|MEM_Real) ){ in valueFromExpr()