Home | History | Annotate | Download | only in metrics

Lines Matching defs:scaled_sum

634   double scaled_sum = (past + current + remaining) / 100.0;
635 WriteAsciiBucketValue(current, scaled_sum, output);
637 double percentage = past / scaled_sum;
642 void Histogram::WriteAsciiBucketValue(Count current, double scaled_sum,
644 StringAppendF(output, " (%d = %3.1f%%)", current, current/scaled_sum);