Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_descriptions.cpp389 uptr n_objects = vars.size(); in Print() local
391 Printf(" This frame has %zu object(s):\n", n_objects); in Print()
394 for (uptr i = 0; i < n_objects; i++) { in Print()
396 uptr next_var_beg = i + 1 < n_objects ? vars[i + 1].beg : ~(0UL); in Print()
H A Dasan_report.cpp91 uptr n_objects = (uptr)internal_simple_strtoll(frame_descr, &p, 10); in ParseFrameDescription() local
92 if (n_objects == 0) in ParseFrameDescription()
95 for (uptr i = 0; i < n_objects; i++) { in ParseFrameDescription()