Home
last modified time | relevance | path

Searched refs:n_ips (Results 1 – 8 of 8) sorted by relevance

/external/valgrind/main/coregrind/
Dm_execontext.c88 UInt n_ips; member
173 VG_(pp_StackTrace)( ec->ips, ec->n_ips ); in VG_()
186 tl_assert(e1->n_ips >= 1 && e2->n_ips >= 1); in VG_()
193 if ( (e1->n_ips <= i) && (e2->n_ips <= i)) return True; in VG_()
194 if ( (e1->n_ips <= i) && !(e2->n_ips <= i)) return False; in VG_()
195 if (!(e1->n_ips <= i) && (e2->n_ips <= i)) return False; in VG_()
204 if ( (e1->n_ips <= i) && (e2->n_ips <= i)) return True; in VG_()
205 if ( (e1->n_ips <= i) && !(e2->n_ips <= i)) return False; in VG_()
206 if (!(e1->n_ips <= i) && (e2->n_ips <= i)) return False; in VG_()
241 static UWord calc_hash ( Addr* ips, UInt n_ips, UWord htab_sz ) in calc_hash() argument
[all …]
Dm_stacktrace.c844 void VG_(pp_StackTrace) ( StackTrace ips, UInt n_ips ) in VG_()
846 vg_assert( n_ips > 0 ); in VG_()
851 VG_(apply_StackTrace)( printIpDesc, NULL, ips, n_ips ); in VG_()
861 UInt n_ips in VG_() local
866 VG_(pp_StackTrace)(ips, n_ips); in VG_()
872 StackTrace ips, UInt n_ips in VG_()
878 vg_assert(n_ips > 0); in VG_()
896 } while (i < n_ips && !main_done); in VG_()
Dm_libcassert.c199 Int n_ips; in report_and_quit() local
217 n_ips = in report_and_quit()
226 VG_(pp_StackTrace) (ips, n_ips); in report_and_quit()
Dm_errormgr.c381 UInt n_ips = VG_(get_ExeContext_n_ips)(ec); in gen_suppression() local
382 tl_assert(n_ips > 0); in gen_suppression()
383 if (n_ips > VG_MAX_SUPP_CALLERS) in gen_suppression()
384 n_ips = VG_MAX_SUPP_CALLERS; in gen_suppression()
388 n_ips); in gen_suppression()
533 UWord n_ips = VG_(get_ExeContext_n_ips)(err->where); in ErrHasNoFunctionNamesNorObjectFileNames() local
535 for (i = 0; i < n_ips; i++) { in ErrHasNoFunctionNamesNorObjectFileNames()
1465 UWord n_ips = VG_(get_ExeContext_n_ips)(err->where); in supp_matches_callers() local
1475 /*INPUT*/ips, szbInput, n_ips, 0/*initial Ix*/, in supp_matches_callers()
Dpub_core_stacktrace.h54 /*OUT*/Addr* ips, UInt n_ips,
/external/valgrind/main/include/
Dpub_tool_stacktrace.h60 /*OUT*/StackTrace ips, UInt n_ips,
73 StackTrace ips, UInt n_ips
77 extern void VG_(pp_StackTrace) ( StackTrace ips, UInt n_ips );
81 extern void VG_(get_and_pp_StackTrace) ( ThreadId tid, UInt n_ips );
Dpub_tool_execontext.h76 ExeContext* ec, UInt n_ips );
111 ExeContext* VG_(make_ExeContext_from_StackTrace)( Addr* ips, UInt n_ips );
/external/valgrind/main/massif/
Dms_main.c864 Int n_ips, i, n_alloc_fns_removed; in get_IPs() local
887 n_ips = VG_(get_StackTrace)( tid, ips, clo_depth + overestimate, in get_IPs()
891 tl_assert(n_ips > 0); in get_IPs()
894 if (n_ips < clo_depth + overestimate) { redo = False; } in get_IPs()
901 for (i = n_alloc_fns_removed; i < n_ips; i++) { in get_IPs()
911 n_ips -= n_alloc_fns_removed; in get_IPs()
912 for (i = 0; i < n_ips; i++) { in get_IPs()
917 if (n_ips >= clo_depth) { in get_IPs()
919 n_ips = clo_depth; // Ignore any IPs below --depth. in get_IPs()
926 return n_ips; in get_IPs()
[all …]