Home
last modified time | relevance | path

Searched refs:n_objects (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/compiler-rt/lib/asan/
H A Dasan_descriptions.cpp390 uptr n_objects = vars.size(); in Print() local
392 Printf(" This frame has %zu object(s):\n", n_objects); in Print()
395 for (uptr i = 0; i < n_objects; i++) { in Print()
397 uptr next_var_beg = i + 1 < n_objects ? vars[i + 1].beg : ~(0UL); in Print()
H A Dasan_report.cpp93 uptr n_objects = (uptr)internal_simple_strtoll(frame_descr, &p, 10); in ParseFrameDescription() local
94 if (n_objects == 0) in ParseFrameDescription()
97 for (uptr i = 0; i < n_objects; i++) { in ParseFrameDescription()