Lines Matching +full:- +full:- +full:depth
2 # SPDX-License-Identifier: BSD-2-Clause
11 # <binary data> is an array of 64-bit integers.
12 # - When the topmost byte is 0, the entry indicates a function return and the
14 # - A non-zero value is a stack depth, indicating a function entry, and the
42 def display(depth, val): argument
44 if depth != 0:
45 curr_depth = depth
50 line = f" TIME | {depth:3} | " + " " * depth + f"0x{val:016x}()"
58 curr_depth = curr_depth - 1
69 if magic == -1:
76 depth = elem >> 56
78 display(depth, val)