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

/external/valgrind/main/include/
H A Dpub_tool_stacktrace.h38 // for thread 'tid'. Maximum of 'n_ips' addresses put into 'ips';
60 /*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 );
H A Dpub_tool_execontext.h76 ExeContext* ec, UInt n_ips );
111 ExeContext* VG_(make_ExeContext_from_StackTrace)( Addr* ips, UInt n_ips );
/external/valgrind/main/coregrind/
H A Dm_execontext.c85 /* Variable-length array. The size is 'n_ips'; at
88 UInt n_ips; member in struct:_ExeContext
173 VG_(pp_StackTrace)( ec->ips, ec->n_ips );
186 tl_assert(e1->n_ips >= 1 && e2->n_ips >= 1);
193 if ( (e1->n_ips <= i) && (e2->n_ips <= i)) return True;
194 if ( (e1->n_ips <= i) && !(e2->n_ips <= i)) return False;
195 if (!(e1->n_ips <
241 calc_hash( Addr* ips, UInt n_ips, UWord htab_sz ) argument
301 UInt n_ips; local
[all...]
H A Dpub_core_stacktrace.h49 // ips[0 .. min(n_ips,return_value)]. If sps and fps are non-NULL,
54 /*OUT*/Addr* ips, UInt n_ips,
H A Dm_libcassert.c224 Int n_ips; local
242 n_ips =
251 VG_(pp_StackTrace) (ips, n_ips);
H A Dm_errormgr.c391 UInt n_ips = VG_(get_ExeContext_n_ips)(ec); local
392 tl_assert(n_ips > 0);
393 if (n_ips > VG_MAX_SUPP_CALLERS)
394 n_ips = VG_MAX_SUPP_CALLERS;
398 n_ips);
1415 UWord n_ips; // nr of elements in ips. member in struct:__anon14819
1451 vg_assert (ixIP < ip2fo->n_ips);
1467 ip2fo->n_ips * sizeof(Int));
1468 for (i = 0; i < ip2fo->n_ips; i++)
1562 /*INPUT*/ip2fo->ips, szbInput, ip2fo->n_ips,
[all...]
H A Dm_stacktrace.c1108 void VG_(pp_StackTrace) ( StackTrace ips, UInt n_ips )
1110 vg_assert( n_ips > 0 );
1115 VG_(apply_StackTrace)( printIpDesc, NULL, ips, n_ips );
1125 UInt n_ips local
1130 VG_(pp_StackTrace)(ips, n_ips);
1136 StackTrace ips, UInt n_ips
1142 vg_assert(n_ips > 0);
1160 } while (i < n_ips && !main_done);
/external/valgrind/main/massif/
H A Dms_main.c864 Int n_ips, i, n_alloc_fns_removed; local
887 n_ips = VG_(get_StackTrace)( tid, ips, clo_depth + overestimate,
891 tl_assert(n_ips > 0);
894 if (n_ips < clo_depth + overestimate) { redo = False; }
901 for (i = n_alloc_fns_removed; i < n_ips; i++) {
911 n_ips -= n_alloc_fns_removed;
912 for (i = 0; i < n_ips; i++) {
917 if (n_ips >= clo_depth) {
919 n_ips = clo_depth; // Ignore any IPs below --depth.
926 return n_ips;
938 Int n_ips = get_IPs(tid, exclude_first_entry, ips); local
[all...]

Completed in 421 milliseconds