Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A DvdbeInt.h291 #define MEM_AffMask 0x003f /* Mask of affinity bits */ macro
339 #define memIsValid(M) ((M)->flags & MEM_AffMask)!=0
H A Dutf.c345 c = MEM_Str|MEM_Term|(pMem->flags&(MEM_AffMask|MEM_Subtype)); in sqlite3VdbeMemTranslate()
H A Dvdbeapi.c316 assert( eType == aType[pVal->flags&MEM_AffMask] ); in sqlite3_value_type()
319 return aType[pVal->flags&MEM_AffMask]; in sqlite3_value_type()
H A Dvdbe.c1387 pOut->flags = (pOut->flags&~(MEM_Undefined|MEM_AffMask))|MEM_Null; in sqlite3VdbeExec()