Lines Matching defs:BytesInScope
205 static void collectLocStats(uint64_t ScopeBytesCovered, uint64_t BytesInScope,
210 auto getCoverageBucket = [ScopeBytesCovered, BytesInScope]() -> unsigned {
215 if (ScopeBytesCovered >= BytesInScope)
218 unsigned LocBucket = 100 * (double)ScopeBytesCovered / BytesInScope;
274 uint64_t BytesInScope, uint32_t InlineDepth,
359 ScopeBytesCovered = BytesInScope;
360 TotalBytesCovered = BytesInScope;
374 ScopeBytesCovered = BytesInScope;
375 TotalBytesCovered = BytesInScope;
401 if (BytesInScope && !DeferLocStats) {
408 collectLocStats(ScopeBytesCovered, BytesInScope, LocStats.VarParamLocStats,
412 collectLocStats(ScopeBytesCovered - BytesEntryValuesCovered, BytesInScope,
427 if (BytesInScope) {
429 GlobalStats.ScopeBytes += BytesInScope;
433 GlobalStats.ParamScopeBytes += BytesInScope;
437 GlobalStats.LocalVarScopeBytes += BytesInScope;
497 uint64_t BytesInScope, uint32_t InlineDepth,
602 BytesInScope = BytesInThisScope;
610 collectStatsForDie(Die, FnPrefix, VarPrefix, BytesInScope, InlineDepth,
632 Child, FnPrefix, ChildVarPrefix, BytesInScope, InlineDepth, FnStatMap,