Home | History | Annotate | Download | only in dist

Lines Matching defs:pF

113286   struct AggInfo_func *pF;
113287 for(i=0, pF=pAggInfo->aFunc; i<pAggInfo->nFunc; i++, pF++){
113288 ExprList *pList = pF->pExpr->x.pList;
113289 assert( !ExprHasProperty(pF->pExpr, EP_xIsSelect) );
113290 sqlite3VdbeAddOp4(v, OP_AggFinal, pF->iMem, pList ? pList->nExpr : 0, 0,
113291 (void*)pF->pFunc, P4_FUNCDEF);
113304 struct AggInfo_func *pF;
113308 for(i=0, pF=pAggInfo->aFunc; i<pAggInfo->nFunc; i++, pF++){
113312 ExprList *pList = pF->pExpr->x.pList;
113313 assert( !ExprHasProperty(pF->pExpr, EP_xIsSelect) );
113322 if( pF->iDistinct>=0 ){
113326 codeDistinct(pParse, pF->iDistinct, addrNext, 1, regAgg);
113328 if( pF->pFunc->funcFlags & SQLITE_FUNC_NEEDCOLL ){
113332 assert( pList!=0 ); /* pList!=0 if pF->pFunc has NEEDCOLL */
113342 sqlite3VdbeAddOp4(v, OP_AggStep0, 0, regAgg, pF->iMem,
113343 (void*)pF->pFunc, P4_FUNCDEF);