Home | History | Annotate | Download | only in orig

Lines Matching defs:pF

113268   struct AggInfo_func *pF;
113269 for(i=0, pF=pAggInfo->aFunc; i<pAggInfo->nFunc; i++, pF++){
113270 ExprList *pList = pF->pExpr->x.pList;
113271 assert( !ExprHasProperty(pF->pExpr, EP_xIsSelect) );
113272 sqlite3VdbeAddOp4(v, OP_AggFinal, pF->iMem, pList ? pList->nExpr : 0, 0,
113273 (void*)pF->pFunc, P4_FUNCDEF);
113286 struct AggInfo_func *pF;
113290 for(i=0, pF=pAggInfo->aFunc; i<pAggInfo->nFunc; i++, pF++){
113294 ExprList *pList = pF->pExpr->x.pList;
113295 assert( !ExprHasProperty(pF->pExpr, EP_xIsSelect) );
113304 if( pF->iDistinct>=0 ){
113308 codeDistinct(pParse, pF->iDistinct, addrNext, 1, regAgg);
113310 if( pF->pFunc->funcFlags & SQLITE_FUNC_NEEDCOLL ){
113314 assert( pList!=0 ); /* pList!=0 if pF->pFunc has NEEDCOLL */
113324 sqlite3VdbeAddOp4(v, OP_AggStep0, 0, regAgg, pF->iMem,
113325 (void*)pF->pFunc, P4_FUNCDEF);