Lines Matching refs:of
5 adding all period values of the entry - usually a function (symbol).
6 This is the value that perf shows traditionally and sum of all the
9 The 'children' overhead is calculated by adding all period values of
10 the child functions so that it can show the total overhead of the
15 It might be confusing that the sum of all the 'children' overhead
16 values exceeds 100% since each of them is already an accumulation of
17 'self' overhead of its child functions. But with this enabled, users
39 In this case 'foo' is a child of 'bar', and 'bar' is an immediate
40 child of 'main' so 'foo' also is a child of 'main'. In other words,
41 'main' is a parent of 'foo' and 'bar', and 'bar' is a parent of 'foo'.
45 in the usual (self-overhead-only) output of perf report:
64 When the --children option is enabled, the 'self' overhead values of
95 In the above output, the 'self' overhead of 'foo' (60%) was add to the
96 'children' overhead of 'bar', 'main' and '\_\_libc_start_main'.
97 Likewise, the 'self' overhead of 'bar' (40%) was added to the
98 'children' overhead of 'main' and '\_\_libc_start_main'.
102 overhead) and they are the parents of 'foo' and 'bar'.