Home | History | Annotate | Download | only in massif

Lines Matching defs:n_ips

864    Int n_ips, i, n_alloc_fns_removed;
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;
937 // After this call, the IPs we want are in ips[0]..ips[n_ips-1].
938 Int n_ips = get_IPs(tid, exclude_first_entry, ips);
940 // Should we ignore this allocation? (Nb: n_ips can be zero, eg. if
942 if (n_ips > 0 && fn_should_be_ignored(ips[0])) {
947 for (i = 0; i < n_ips; i++) {