Searched refs:sym_at (Results 1 – 2 of 2) sorted by relevance
/littlefs-3.7.0-3.6.0/scripts/ |
D | perfbd.py | 174 sym_at = [] 197 sym_at.append((addr, name, size)) 207 sym_at.sort(key=lambda x: (x[0], -x[2], x[1])) 209 for addr, name, size in sym_at: 212 sym_at = sym_at_ 292 return syms, sym_at, lines, line_at 295 def collect_job(path, start, stop, syms, sym_at, lines, line_at, *, argument 470 i = bisect.bisect(sym_at, addr, key=lambda x: x[0]) 472 if i > 0 and addr < sym_at[i-1][0] + sym_at[i-1][2]: 473 _, sym, _ = sym_at[i-1] [all …]
|
D | perf.py | 266 sym_at = [] 289 sym_at.append((addr, name, size)) 299 sym_at.sort(key=lambda x: (x[0], -x[2], x[1])) 301 for addr, name, size in sym_at: 304 sym_at = sym_at_ 384 return syms, sym_at, lines, line_at 484 syms, sym_at, lines, line_at = collect_syms_and_lines(
|