Home | History | Annotate | Download | only in dist

Lines Matching defs:pF

98095   struct AggInfo_func *pF;
98096 for(i=0, pF=pAggInfo->aFunc; i<pAggInfo->nFunc; i++, pF++){
98097 ExprList *pList = pF->pExpr->x.pList;
98098 assert( !ExprHasProperty(pF->pExpr, EP_xIsSelect) );
98099 sqlite3VdbeAddOp4(v, OP_AggFinal, pF->iMem, pList ? pList->nExpr : 0, 0,
98100 (void*)pF->pFunc, P4_FUNCDEF);
98113 struct AggInfo_func *pF;
98118 for(i=0, pF=pAggInfo->aFunc; i<pAggInfo->nFunc; i++, pF++){
98122 ExprList *pList = pF->pExpr->x.pList;
98123 assert( !ExprHasProperty(pF->pExpr, EP_xIsSelect) );
98132 if( pF->iDistinct>=0 ){
98135 codeDistinct(pParse, pF->iDistinct, addrNext, 1, regAgg);
98137 if( pF->pFunc->flags & SQLITE_FUNC_NEEDCOLL ){
98141 assert( pList!=0 ); /* pList!=0 if pF->pFunc has NEEDCOLL */
98151 sqlite3VdbeAddOp4(v, OP_AggStep, 0, regAgg, pF->iMem,
98152 (void*)pF->pFunc, P4_FUNCDEF);