Home
last modified time | relevance | path

Searched refs:MEM_IntReal (Results 1 – 1 of 1) sorted by relevance

/src/contrib/sqlite3/
H A Dsqlite3.c23896 #define MEM_IntReal 0x0020 /* MEM_Int that stringifies like MEM_Real */ macro
83882 assert( ISPOWEROF2(p->flags & (MEM_Int|MEM_Real|MEM_IntReal)) );
83944 assert( p->flags & (MEM_Int|MEM_Real|MEM_IntReal) );
83960 (p->flags & MEM_IntReal)!=0 ? (double)p->u.i : p->u.r);
84008 if( (p->flags & (MEM_Int|MEM_Real|MEM_IntReal))==0 ) return 1;
84149 pMem->flags &= (MEM_Null|MEM_Int|MEM_Real|MEM_IntReal);
84301 assert( pMem->flags&(MEM_Int|MEM_Real|MEM_IntReal) );
84316 if( bForce ) pMem->flags &= ~(MEM_Int|MEM_Real|MEM_IntReal);
84470 if( flags & (MEM_Int|MEM_IntReal) ){
84471 testcase( flags & MEM_IntReal );
[all …]