Home | History | Annotate | Download | only in dist

Lines Matching defs:MEM_Real

14052 ** set, then the string is nul terminated. The MEM_Int and MEM_Real 
14058 #define MEM_Real 0x0008 /* Value is a real number */
61065 ** Existing representations MEM_Int and MEM_Real are *not* invalidated.
61081 assert( fg&(MEM_Int|MEM_Real) );
61099 assert( fg & MEM_Real );
61224 }else if( flags & MEM_Real ){
61246 if( pMem->flags & MEM_Real ){
61262 ** The MEM structure is already a MEM_Real. Try to also make it a
61266 assert( pMem->flags & MEM_Real );
61305 ** Convert pMem so that it is of type MEM_Real.
61313 MemSetTypeFlag(pMem, MEM_Real);
61318 ** Convert pMem so that it has types MEM_Real or MEM_Int or both.
61326 if( (pMem->flags & (MEM_Int|MEM_Real|MEM_Null))==0 ){
61333 MemSetTypeFlag(pMem, MEM_Real);
61337 assert( (pMem->flags & (MEM_Int|MEM_Real|MEM_Null))!=0 );
61402 pMem->flags = MEM_Real;
61864 if( pVal->flags & (MEM_Int|MEM_Real) ) pVal->flags &= ~MEM_Str;
61876 pVal->flags |= MEM_Real;
63312 }else if( pMem->flags & MEM_Real ){
65065 if( flags&MEM_Real ){
65272 pMem->flags = sqlite3IsNaN(pMem->r) ? MEM_Null : MEM_Real;
65537 if( combined_flags&(MEM_Int|MEM_Real) ){
65544 if( (f1&MEM_Real)!=0 ){
65551 if( (f2&MEM_Real)!=0 ){
65732 else if( pRhs->flags & MEM_Real ){
66042 testcase( flags & MEM_Real );
66045 if( (flags & (MEM_Real|MEM_Null|MEM_Blob))==0 && p->pKeyInfo->aColl[0]==0 ){
67750 }else if( pVar->flags & MEM_Real ){
68165 pRec->flags |= MEM_Real;
68169 if(((X)->flags&(MEM_Real|MEM_Int))==0){applyNumericAffinity(X);}
68199 if( 0==(pRec->flags&MEM_Str) && (pRec->flags&(MEM_Real|MEM_Int)) ){
68202 pRec->flags &= ~(MEM_Real|MEM_Int);
68207 if( pRec->flags & MEM_Real ){
68242 ** Return the numeric type for pMem, either MEM_Int or MEM_Real or both or
68249 if( pMem->flags & (MEM_Int|MEM_Real) ){
68250 return pMem->flags & (MEM_Int|MEM_Real);
68259 return MEM_Real;
68361 }else if( p->flags & MEM_Real ){
68992 pOut->flags = MEM_Real;
69473 MemSetTypeFlag(pOut, MEM_Real);
69474 if( ((type1|type2)&MEM_Real)==0 && !bIntint ){
69778 pIn1->flags &= ~(MEM_Int|MEM_Real|MEM_Blob|MEM_Zero);
71624 if( (pIn3->flags & MEM_Real)==0 ){