Lines Matching refs:total
129 total = float(self.gotten_sum)
130 per = 100*total/passed
133 avg = total/exs
136 return [total/(float(passed)/10**9), per, avg]
139 total = float(self.waited_sum)
140 per = 100*total/passed
143 avg = total/exs
146 return [total/(float(passed)/10**9), per, avg]
149 total = float(self.blocked_sum)
150 per = 100*total/passed
153 avg = total/float(ios)
156 return [total/(float(passed)/10**9), per, avg]
159 total = self.allocated_sum
162 return float(total)/exs
167 total = float(self.exec_count/(float(passed)/10**9))
168 return total
171 total = float(self.iocount_sum)
174 avg = total/exs
177 return [total/(float(passed)/10**9), avg]