Searched refs:line_at (Results 1 – 2 of 2) sorted by relevance
/littlefs-3.7.0-3.6.0/scripts/ |
D | perfbd.py | 218 line_at = [] 262 line_at.append((op_addr, file, op_line)) 285 line_at.sort() 287 for addr, file, line in line_at: 290 line_at = line_at_ 292 return syms, sym_at, lines, line_at 295 def collect_job(path, start, stop, syms, sym_at, lines, line_at, *, argument 487 i = bisect.bisect(line_at, addr, key=lambda x: x[0]) 489 _, file, line = line_at[i-1] 553 syms, sym_at, lines, line_at = collect_syms_and_lines(obj_path, **args) [all …]
|
D | perf.py | 310 line_at = [] 354 line_at.append((op_addr, file, op_line)) 377 line_at.sort() 379 for addr, file, line in line_at: 382 line_at = line_at_ 384 return syms, sym_at, lines, line_at 484 syms, sym_at, lines, line_at = collect_syms_and_lines( 524 i = bisect.bisect(line_at, addr, key=lambda x: x[0]) 526 _, file, line = line_at[i-1]
|