HomeSort by: relevance | last modified time | path
    Searched defs:Measurement (Results 1 - 3 of 3) sorted by relevancy

  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.perf/lib/perftest/
measure.py 38 measurements is a collection of Measurement objects.
67 class Measurement(object):
68 """A measurement for a certain aspect."""
71 """Constructor of Measurement.
73 Attribute result is the TestResult associated with measurement.
79 """Abstract method to start the measurement."""
83 """Abstract method to stop the measurement.
85 When the measurement is stopped, we've got something, and
95 class MeasurementPerfCounter(Measurement):
96 """Measurement on performance counter.""
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.perf/lib/perftest/
measure.py 38 measurements is a collection of Measurement objects.
67 class Measurement(object):
68 """A measurement for a certain aspect."""
71 """Constructor of Measurement.
73 Attribute result is the TestResult associated with measurement.
79 """Abstract method to start the measurement."""
83 """Abstract method to stop the measurement.
85 When the measurement is stopped, we've got something, and
95 class MeasurementPerfCounter(Measurement):
96 """Measurement on performance counter.""
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
BenchmarkRunner.cpp 242 BenchmarkMeasure &Measurement = std::get<0>(I);
244 assert(Measurement.Key == NewMeasurement.Key &&
247 Measurement.PerInstructionValue = std::min(
248 Measurement.PerInstructionValue, NewMeasurement.PerInstructionValue);
249 Measurement.PerSnippetValue =
250 std::min(Measurement.PerSnippetValue, NewMeasurement.PerSnippetValue);

Completed in 26 milliseconds