Home | History | Annotate | Download | only in amalgamation

Lines Matching defs:MEM_Real

12383 ** set, then the string is nul terminated. The MEM_Int and MEM_Real 
12389 #define MEM_Real 0x0008 /* Value is a real number */
56160 ** Existing representations MEM_Int and MEM_Real are *not* invalidated.
56176 assert( fg&(MEM_Int|MEM_Real) );
56194 assert( fg & MEM_Real );
56332 }else if( flags & MEM_Real ){
56354 if( pMem->flags & MEM_Real ){
56370 ** The MEM structure is already a MEM_Real. Try to also make it a
56374 assert( pMem->flags & MEM_Real );
56413 ** Convert pMem so that it is of type MEM_Real.
56421 MemSetTypeFlag(pMem, MEM_Real);
56426 ** Convert pMem so that it has types MEM_Real or MEM_Int or both.
56434 if( (pMem->flags & (MEM_Int|MEM_Real|MEM_Null))==0 ){
56441 MemSetTypeFlag(pMem, MEM_Real);
56445 assert( (pMem->flags & (MEM_Int|MEM_Real|MEM_Null))!=0 );
56510 pMem->flags = MEM_Real;
56764 if( combined_flags&(MEM_Int|MEM_Real) ){
56765 if( !(f1&(MEM_Int|MEM_Real)) ){
56768 if( !(f2&(MEM_Int|MEM_Real)) ){
56773 if( (f1&MEM_Real)==0 ){
56778 if( (f2&MEM_Real)==0 ){
57037 if( pVal->flags & (MEM_Int|MEM_Real) ) pVal->flags &= ~MEM_Str;
57047 pVal->flags |= MEM_Real;
58040 }else if( pMem->flags & MEM_Real ){
59677 if( flags&MEM_Real ){
59889 pMem->flags = sqlite3IsNaN(pMem->r) ? MEM_Null : MEM_Real;
61782 }else if( pVar->flags & MEM_Real ){
61990 else if( flags & MEM_Real ){
62067 if( (pRec->flags & (MEM_Real|MEM_Int))==0 ){
62078 pRec->flags |= MEM_Real;
62111 if( 0==(pRec->flags&MEM_Str) && (pRec->flags&(MEM_Real|MEM_Int)) ){
62114 pRec->flags &= ~(MEM_Real|MEM_Int);
62119 if( pRec->flags & MEM_Real ){
62247 }else if( p->flags & MEM_Real ){
63214 pOut->flags = MEM_Real;
63622 MemSetTypeFlag(pOut, MEM_Real);
63623 if( (u.af.flags & MEM_Real)==0 ){
63924 pIn1->flags &= ~(MEM_Int|MEM_Real|MEM_Blob|MEM_Zero);
65659 if( (pIn3->flags & MEM_Real)==0 ){
65667 assert( (pIn3->flags & MEM_Real)!=0 );