Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A DvdbeInt.h309 #define MEM_Agg 0x8000 /* Mem.z points to an agg function context */ macro
315 (((X)->flags&(MEM_Agg|MEM_Dyn))!=0)
H A Dvdbemem.c50 assert( (p->flags & (MEM_Int|MEM_Real|MEM_Str|MEM_Blob|MEM_Agg))==0 ); in sqlite3VdbeCheckMemInvariants()
518 if( p->flags&MEM_Agg ){ in vdbeMemClearExternAndSetNull()
520 assert( (p->flags & MEM_Agg)==0 ); in vdbeMemClearExternAndSetNull()
H A Dvdbeapi.c974 assert( (pMem->flags & MEM_Agg)==0 ); in createAggContext()
980 pMem->flags = MEM_Agg; in createAggContext()
998 if( (p->pMem->flags & MEM_Agg)==0 ){ in sqlite3_aggregate_context()
H A Dvdbeaux.c2038 testcase( p->flags & MEM_Agg ); in releaseMemArray()
2040 if( p->flags&(MEM_Agg|MEM_Dyn) ){ in releaseMemArray()
H A Dvdbe.c7587 assert( (pMem->flags & ~(MEM_Null|MEM_Agg))==0 ); in sqlite3VdbeExec()