Home
last modified time | relevance | path

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

/freebsd-12-stable/crypto/heimdal/lib/sqlite/
Dsqlite3.c12721 #define MEM_Null 0x0001 /* Value is NULL */ macro
57257 pMem->flags = MEM_Null;
57402 assert( (pMem->flags & MEM_Null)!=0 || pFunc==pMem->u.pDef );
57405 ctx.s.flags = MEM_Null;
57614 if( (pMem->flags & (MEM_Int|MEM_Real|MEM_Null))==0 ){
57625 assert( (pMem->flags & (MEM_Int|MEM_Real|MEM_Null))!=0 );
57642 MemSetTypeFlag(pMem, MEM_Null);
57707 pMem->flags = MEM_Null;
57813 pFrom->flags = MEM_Null;
57936 if( combined_flags&MEM_Null ){
[all …]
/freebsd-12-stable/contrib/sqlite3/
Dsqlite3.c23153 #define MEM_Null 0x0001 /* Value is NULL (or a pointer) */ macro
23195 (((X)->flags&MEM_TypeMask)==(MEM_Null|MEM_Zero) \
81944 if( p->flags & MEM_Null ){
81961 assert( (p->flags & ~(MEM_Null|MEM_Term|MEM_Subtype|MEM_FromBind
82209 pMem->flags &= (MEM_Null|MEM_Int|MEM_Real|MEM_IntReal);
82396 assert( (pMem->flags & MEM_Null)!=0 || pFunc==pMem->u.pDef );
82400 t.flags = MEM_Null;
82426 assert( (pAccum->flags & MEM_Null)!=0 || pFunc==pAccum->u.pDef );
82461 p->flags = MEM_Null;
82578 if( pMem->flags & MEM_Null ) return ifNull;
[all …]