Lines Matching refs:MEM_IntReal
1812 }else if( pMem->flags & (MEM_Int|MEM_IntReal) ){ in sqlite3VdbeDisplayP4()
3743 if( flags&(MEM_Int|MEM_IntReal) ){
3749 testcase( flags & MEM_IntReal );
3769 if( flags&MEM_IntReal ){
3774 pMem->flags &= ~MEM_IntReal;
4393 if( combined_flags&(MEM_Int|MEM_Real|MEM_IntReal) ){ in sqlite3MemCompare()
4396 testcase( combined_flags & MEM_IntReal ); in sqlite3MemCompare()
4397 if( (f1 & f2 & (MEM_Int|MEM_IntReal))!=0 ){ in sqlite3MemCompare()
4399 testcase( f1 & f2 & MEM_IntReal ); in sqlite3MemCompare()
4409 if( (f1&(MEM_Int|MEM_IntReal))!=0 ){ in sqlite3MemCompare()
4411 testcase( f1 & MEM_IntReal ); in sqlite3MemCompare()
4414 }else if( (f2&(MEM_Int|MEM_IntReal))!=0 ){ in sqlite3MemCompare()
4423 if( (f2&(MEM_Int|MEM_IntReal))!=0 ){ in sqlite3MemCompare()
4425 testcase( f2 & MEM_IntReal ); in sqlite3MemCompare()
4582 if( pRhs->flags & (MEM_Int|MEM_IntReal) ){ in sqlite3VdbeRecordCompareWithSkip()
4584 testcase( pRhs->flags & MEM_IntReal ); in sqlite3VdbeRecordCompareWithSkip()
4954 if( (flags & (MEM_Real|MEM_IntReal|MEM_Null|MEM_Blob))==0 in sqlite3VdbeFindCompare()