Lines Matching refs:BytesInScope
156 static void collectLocStats(uint64_t ScopeBytesCovered, uint64_t BytesInScope, in collectLocStats() argument
161 auto getCoverageBucket = [ScopeBytesCovered, BytesInScope]() -> unsigned { in collectLocStats()
166 if (ScopeBytesCovered >= BytesInScope) in collectLocStats()
169 unsigned LocBucket = 100 * (double)ScopeBytesCovered / BytesInScope; in collectLocStats()
225 uint64_t BytesInScope, uint32_t InlineDepth, in collectStatsForDie() argument
310 ScopeBytesCovered = BytesInScope; in collectStatsForDie()
311 TotalBytesCovered = BytesInScope; in collectStatsForDie()
325 ScopeBytesCovered = BytesInScope; in collectStatsForDie()
326 TotalBytesCovered = BytesInScope; in collectStatsForDie()
352 if (BytesInScope && !DeferLocStats) { in collectStatsForDie()
359 collectLocStats(ScopeBytesCovered, BytesInScope, LocStats.VarParamLocStats, in collectStatsForDie()
363 collectLocStats(ScopeBytesCovered - BytesEntryValuesCovered, BytesInScope, in collectStatsForDie()
378 if (BytesInScope) { in collectStatsForDie()
380 GlobalStats.ScopeBytes += BytesInScope; in collectStatsForDie()
384 GlobalStats.ParamScopeBytes += BytesInScope; in collectStatsForDie()
388 GlobalStats.LocalVarScopeBytes += BytesInScope; in collectStatsForDie()
445 uint64_t BytesInScope, uint32_t InlineDepth, in collectStatsRecursive() argument
545 BytesInScope = BytesInThisScope; in collectStatsRecursive()
553 collectStatsForDie(Die, FnPrefix, VarPrefix, BytesInScope, InlineDepth, in collectStatsRecursive()
575 Child, FnPrefix, ChildVarPrefix, BytesInScope, InlineDepth, FnStatMap, in collectStatsRecursive()