Lines Matching refs:BytesInScope
194 static void collectLocStats(uint64_t ScopeBytesCovered, uint64_t BytesInScope, in collectLocStats() argument
199 auto getCoverageBucket = [ScopeBytesCovered, BytesInScope]() -> unsigned { in collectLocStats()
204 if (ScopeBytesCovered >= BytesInScope) in collectLocStats()
207 unsigned LocBucket = 100 * (double)ScopeBytesCovered / BytesInScope; in collectLocStats()
263 uint64_t BytesInScope, uint32_t InlineDepth, in collectStatsForDie() argument
348 ScopeBytesCovered = BytesInScope; in collectStatsForDie()
349 TotalBytesCovered = BytesInScope; in collectStatsForDie()
363 ScopeBytesCovered = BytesInScope; in collectStatsForDie()
364 TotalBytesCovered = BytesInScope; in collectStatsForDie()
390 if (BytesInScope && !DeferLocStats) { in collectStatsForDie()
397 collectLocStats(ScopeBytesCovered, BytesInScope, LocStats.VarParamLocStats, in collectStatsForDie()
401 collectLocStats(ScopeBytesCovered - BytesEntryValuesCovered, BytesInScope, in collectStatsForDie()
416 if (BytesInScope) { in collectStatsForDie()
418 GlobalStats.ScopeBytes += BytesInScope; in collectStatsForDie()
422 GlobalStats.ParamScopeBytes += BytesInScope; in collectStatsForDie()
426 GlobalStats.LocalVarScopeBytes += BytesInScope; in collectStatsForDie()
486 uint64_t BytesInScope, uint32_t InlineDepth, in collectStatsRecursive() argument
590 BytesInScope = BytesInThisScope; in collectStatsRecursive()
598 collectStatsForDie(Die, FnPrefix, VarPrefix, BytesInScope, InlineDepth, in collectStatsRecursive()
620 Child, FnPrefix, ChildVarPrefix, BytesInScope, InlineDepth, FnStatMap, in collectStatsRecursive()