Lines Matching refs:A
166 inline GraphRenderer::TimeStat operator+(const GraphRenderer::TimeStat &A,
168 return {A.Count + B.Count, A.Min + B.Min, A.Median + B.Median,
169 A.Pct90 + B.Pct90, A.Pct99 + B.Pct99, A.Max + B.Max,
170 A.Sum + B.Sum};
174 inline GraphRenderer::TimeStat operator-(const GraphRenderer::TimeStat &A,
177 return {A.Count - B.Count, A.Min - B.Min, A.Median - B.Median,
178 A.Pct90 - B.Pct90, A.Pct99 - B.Pct99, A.Max - B.Max,
179 A.Sum - B.Sum};
183 inline GraphRenderer::TimeStat operator/(const GraphRenderer::TimeStat &A,
186 return {static_cast<int64_t>(A.Count / B),
187 A.Min / B,
188 A.Median / B,
189 A.Pct90 / B,
190 A.Pct99 / B,
191 A.Max / B,
192 A.Sum / B};
196 inline GraphRenderer::TimeStat operator*(const GraphRenderer::TimeStat &A,
198 return {static_cast<int64_t>(A.Count * B),
199 A.Min * B,
200 A.Median * B,
201 A.Pct90 * B,
202 A.Pct99 * B,
203 A.Max * B,
204 A.Sum * B};
208 inline GraphRenderer::TimeStat operator*(double A,
210 return B * A;
214 inline GraphRenderer::TimeStat operator*(const GraphRenderer::TimeStat &A,
216 return {A.Count * B.Count, A.Min * B.Min, A.Median * B.Median,
217 A.Pct90 * B.Pct90, A.Pct99 * B.Pct99, A.Max * B.Max,
218 A.Sum * B.Sum};
222 inline GraphRenderer::TimeStat operator/(const GraphRenderer::TimeStat &A,
224 return {A.Count / B.Count, A.Min / B.Min, A.Median / B.Median,
225 A.Pct90 / B.Pct90, A.Pct99 / B.Pct99, A.Max / B.Max,
226 A.Sum / B.Sum};