Lines Matching defs:aBest
114900 StatSample *aBest; /* Array of nCol best samples */
114976 for(i=0; i<p->nCol; i++) sampleClear(p->db, p->aBest+i);
115038 + sizeof(StatSample)*(nCol+mxSample) /* StatAccum.aBest[], a[] */
115069 /* Set up the StatAccum.a[] and aBest[] arrays */
115071 p->aBest = &p->a[mxSample];
115081 p->aBest[i].iCol = i;
115258 /* Check if any samples from the aBest[] array should be pushed
115261 StatSample *pBest = &p->aBest[i];
115367 /* Update the aBest[] array. */
115370 if( i>=iChng || sampleIsBetterPost(p, &p->current, &p->aBest[i]) ){
115371 sampleCopy(p, &p->aBest[i], &p->current);