Home
last modified time | relevance | path

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

/src/contrib/sqlite3/
H A Dsqlite3.c23893 #define MEM_Int 0x0004 /* Value is an integer */ macro
83882 assert( ISPOWEROF2(p->flags & (MEM_Int|MEM_Real|MEM_IntReal)) );
83886 assert( (p->flags & (MEM_Int|MEM_Real|MEM_Str|MEM_Blob|MEM_Agg))==0 );
83944 assert( p->flags & (MEM_Int|MEM_Real|MEM_IntReal) );
83946 if( p->flags & MEM_Int ){
83951 assert( (p->flags&MEM_Int)*2==sizeof(x) );
83952 memcpy(&x, (char*)&p->u, (p->flags&MEM_Int)*2);
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) );
[all …]