Lines Matching refs:totalRows

134     protected final int totalRows;  field in MapFilePerformanceEvaluation.RowOrientedBenchmark
137 int totalRows) { in RowOrientedBenchmark() argument
141 this.totalRows = totalRows; in RowOrientedBenchmark()
151 return this.totalRows / 10; in getReportingPeriod()
168 for (int i = 0; i < totalRows; i++) { in run()
192 int totalRows) { in SequentialWriteBenchmark() argument
193 super(conf, fs, mf, totalRows); in SequentialWriteBenchmark()
215 return this.totalRows; // don't report progress in getReportingPeriod()
232 int totalRows) { in ReadBenchmark() argument
233 super(conf, fs, mf, totalRows); in ReadBenchmark()
252 Path mf, int totalRows) { in SequentialReadBenchmark() argument
253 super(conf, fs, mf, totalRows); in SequentialReadBenchmark()
266 return this.totalRows; // don't report progress in getReportingPeriod()
276 Path mf, int totalRows) { in UniformRandomReadBenchmark() argument
277 super(conf, fs, mf, totalRows); in UniformRandomReadBenchmark()
288 return format(random.nextInt(totalRows), key); in getRandomRow()
297 Path mf, int totalRows) { in UniformRandomSmallScan() argument
298 super(conf, fs, mf, totalRows/10); in UniformRandomSmallScan()
318 return format(random.nextInt(totalRows), key); in getRandomRow()
326 Path mf, int totalRows) { in GaussianRandomReadBenchmark() argument
327 super(conf, fs, mf, totalRows); in GaussianRandomReadBenchmark()
338 int r = (int) randomData.nextGaussian((double)totalRows / 2.0, in getGaussianRandomRow()
339 (double)totalRows / 10.0); in getGaussianRandomRow()