Searched defs:n_ips (Results 1 - 5 of 5) sorted by relevance

/external/valgrind/main/coregrind/
H A Dm_libcassert.c182 Int n_ips; local
200 n_ips =
209 VG_(pp_StackTrace) (ips, n_ips);
H A Dm_execontext.c84 /* Variable-length array. The size is 'n_ips'; at
87 UInt n_ips; member in struct:_ExeContext
172 VG_(pp_StackTrace)( ec->ips, ec->n_ips );
185 tl_assert(e1->n_ips >= 1 && e2->n_ips >= 1);
192 if ( (e1->n_ips <= i) && (e2->n_ips <= i)) return True;
193 if ( (e1->n_ips <= i) && !(e2->n_ips <= i)) return False;
194 if (!(e1->n_ips <
240 calc_hash( Addr* ips, UInt n_ips, UWord htab_sz ) argument
300 UInt n_ips; local
[all...]
H A Dm_stacktrace.c768 void VG_(pp_StackTrace) ( StackTrace ips, UInt n_ips )
770 vg_assert( n_ips > 0 );
775 VG_(apply_StackTrace)( printIpDesc, NULL, ips, n_ips );
785 UInt n_ips local
790 VG_(pp_StackTrace)(ips, n_ips);
796 StackTrace ips, UInt n_ips
802 vg_assert(n_ips > 0);
820 } while (i < n_ips && !main_done);
H A Dm_errormgr.c379 UInt n_ips = VG_(get_ExeContext_n_ips)(ec); local
380 tl_assert(n_ips > 0);
381 if (n_ips > VG_MAX_SUPP_CALLERS)
382 n_ips = VG_MAX_SUPP_CALLERS;
386 n_ips);
520 UWord n_ips = VG_(get_ExeContext_n_ips)(err->where); local
522 for (i = 0; i < n_ips; i++) {
1422 UWord n_ips = VG_(get_ExeContext_n_ips)(err->where); local
1432 /*INPUT*/ips, szbInput, n_ips, 0/*initial Ix*/,
/external/valgrind/main/massif/
H A Dms_main.c868 Int n_ips, i, n_alloc_fns_removed; local
891 n_ips = VG_(get_StackTrace)( tid, ips, clo_depth + overestimate,
895 tl_assert(n_ips > 0);
898 if (n_ips < clo_depth + overestimate) { redo = False; }
905 for (i = n_alloc_fns_removed; i < n_ips; i++) {
915 n_ips -= n_alloc_fns_removed;
916 for (i = 0; i < n_ips; i++) {
921 if (n_ips >= clo_depth) {
923 n_ips = clo_depth; // Ignore any IPs below --depth.
930 return n_ips;
942 Int n_ips = get_IPs(tid, exclude_first_entry, ips); local
[all...]

Completed in 91 milliseconds