Home | History | Annotate | Download | only in orig

Lines Matching defs:pF

98084   struct AggInfo_func *pF;
98085 for(i=0, pF=pAggInfo->aFunc; i<pAggInfo->nFunc; i++, pF++){
98086 ExprList *pList = pF->pExpr->x.pList;
98087 assert( !ExprHasProperty(pF->pExpr, EP_xIsSelect) );
98088 sqlite3VdbeAddOp4(v, OP_AggFinal, pF->iMem, pList ? pList->nExpr : 0, 0,
98089 (void*)pF->pFunc, P4_FUNCDEF);
98102 struct AggInfo_func *pF;
98107 for(i=0, pF=pAggInfo->aFunc; i<pAggInfo->nFunc; i++, pF++){
98111 ExprList *pList = pF->pExpr->x.pList;
98112 assert( !ExprHasProperty(pF->pExpr, EP_xIsSelect) );
98121 if( pF->iDistinct>=0 ){
98124 codeDistinct(pParse, pF->iDistinct, addrNext, 1, regAgg);
98126 if( pF->pFunc->flags & SQLITE_FUNC_NEEDCOLL ){
98130 assert( pList!=0 ); /* pList!=0 if pF->pFunc has NEEDCOLL */
98140 sqlite3VdbeAddOp4(v, OP_AggStep, 0, regAgg, pF->iMem,
98141 (void*)pF->pFunc, P4_FUNCDEF);