Lines Matching refs:stats
9919 cell_stats_t stats, globalStats; in DMPlexCheckCellShape() local
9928 stats.min = PETSC_MAX_REAL; in DMPlexCheckCellShape()
9929 stats.max = PETSC_MIN_REAL; in DMPlexCheckCellShape()
9930 stats.sum = stats.squaresum = 0.; in DMPlexCheckCellShape()
9931 stats.count = 0; in DMPlexCheckCellShape()
9952 stats.min = PetscMin(stats.min, cond); in DMPlexCheckCellShape()
9953 stats.max = PetscMax(stats.max, cond); in DMPlexCheckCellShape()
9954 stats.sum += cond; in DMPlexCheckCellShape()
9955 stats.squaresum += cond2; in DMPlexCheckCellShape()
9956 stats.count++; in DMPlexCheckCellShape()
10001 PetscCallMPI(MPI_Reduce(&stats, &globalStats, 1, statType, statReduce, 0, comm)); in DMPlexCheckCellShape()
10005 PetscCall(PetscArraycpy(&globalStats, &stats, 1)); in DMPlexCheckCellShape()