Lines Matching refs:MEM_Real

12398 ** set, then the string is nul terminated. The MEM_Int and MEM_Real 
12404 #define MEM_Real 0x0008 /* Value is a real number */
56339 ** Existing representations MEM_Int and MEM_Real are *not* invalidated.
56355 assert( fg&(MEM_Int|MEM_Real) );
56373 assert( fg & MEM_Real );
56511 }else if( flags & MEM_Real ){
56533 if( pMem->flags & MEM_Real ){
56549 ** The MEM structure is already a MEM_Real. Try to also make it a
56553 assert( pMem->flags & MEM_Real );
56592 ** Convert pMem so that it is of type MEM_Real.
56600 MemSetTypeFlag(pMem, MEM_Real);
56605 ** Convert pMem so that it has types MEM_Real or MEM_Int or both.
56613 if( (pMem->flags & (MEM_Int|MEM_Real|MEM_Null))==0 ){
56620 MemSetTypeFlag(pMem, MEM_Real);
56624 assert( (pMem->flags & (MEM_Int|MEM_Real|MEM_Null))!=0 );
56689 pMem->flags = MEM_Real;
56943 if( combined_flags&(MEM_Int|MEM_Real) ){
56944 if( !(f1&(MEM_Int|MEM_Real)) ){
56947 if( !(f2&(MEM_Int|MEM_Real)) ){
56952 if( (f1&MEM_Real)==0 ){
56957 if( (f2&MEM_Real)==0 ){
57216 if( pVal->flags & (MEM_Int|MEM_Real) ) pVal->flags &= ~MEM_Str;
57226 pVal->flags |= MEM_Real;
58219 }else if( pMem->flags & MEM_Real ){
59856 if( flags&MEM_Real ){
60068 pMem->flags = sqlite3IsNaN(pMem->r) ? MEM_Null : MEM_Real;
61961 }else if( pVar->flags & MEM_Real ){
62169 else if( flags & MEM_Real ){
62246 if( (pRec->flags & (MEM_Real|MEM_Int))==0 ){
62257 pRec->flags |= MEM_Real;
62290 if( 0==(pRec->flags&MEM_Str) && (pRec->flags&(MEM_Real|MEM_Int)) ){
62293 pRec->flags &= ~(MEM_Real|MEM_Int);
62298 if( pRec->flags & MEM_Real ){
62426 }else if( p->flags & MEM_Real ){
63393 pOut->flags = MEM_Real;
63801 MemSetTypeFlag(pOut, MEM_Real);
63802 if( (u.af.flags & MEM_Real)==0 ){
64103 pIn1->flags &= ~(MEM_Int|MEM_Real|MEM_Blob|MEM_Zero);
65838 if( (pIn3->flags & MEM_Real)==0 ){
65846 assert( (pIn3->flags & MEM_Real)!=0 );