Home
last modified time | relevance | path

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

/netbsd-src/external/public-domain/sqlite/dist/
H A Dsqlite3.c23320 #define MEM_IntReal 0x0020 /* MEM_Int that stringifies like MEM_Real */ macro
82388 assert( ISPOWEROF2(p->flags & (MEM_Int|MEM_Real|MEM_IntReal)) );
82450 assert( p->flags & (MEM_Int|MEM_Real|MEM_IntReal) );
82466 (p->flags & MEM_IntReal)!=0 ? (double)p->u.i : p->u.r);
82514 if( (p->flags & (MEM_Int|MEM_Real|MEM_IntReal))==0 ) return 1;
82655 pMem->flags &= (MEM_Null|MEM_Int|MEM_Real|MEM_IntReal);
82807 assert( pMem->flags&(MEM_Int|MEM_Real|MEM_IntReal) );
82822 if( bForce ) pMem->flags &= ~(MEM_Int|MEM_Real|MEM_IntReal);
82976 if( flags & (MEM_Int|MEM_IntReal) ){
82977 testcase( flags & MEM_IntReal );
[all …]