Searched defs:pAgg (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dvdbeaux.c485 if( p->pAgg==0 ){
487 p->pAgg = (void*)p->s.z;
488 memset(p->pAgg, 0, nByte);
490 p->pAgg = sqliteMalloc( nByte );
493 return p->pAgg;
681 void sqliteVdbeAggReset(Agg *pAgg){ argument
684 for(p = sqliteHashFirst(&pAgg->hash); p; p = sqliteHashNext(p)){
686 assert( pAgg->apFunc!=0 );
687 for(i=0; i<pAgg->nMem; i++){
689 if( pAgg
[all...]
H A Dselect.c2348 AggExpr *pAgg; local
2358 for(i=0, pAgg=pParse->aAgg; i<pParse->nAgg; i++, pAgg++){
2359 if( pAgg->isAgg ) continue;
2360 sqliteExprCode(pParse, pAgg->pExpr);
2365 for(i=0, pAgg=pParse->aAgg; i<pParse->nAgg; i++, pAgg++){
2369 if( !pAgg->isAgg ) continue;
2370 assert( pAgg->pFunc!=0 );
2371 assert( pAgg
[all...]
H A DvdbeInt.h159 void *pAgg; /* Aggregate context */ member in struct:sqlite_func

Completed in 58 milliseconds