Lines Matching defs:n_ips
824 Int n_ips, i, n_alloc_fns_removed;
847 n_ips = VG_(get_StackTrace)( tid, ips, clo_depth + overestimate,
851 tl_assert(n_ips > 0);
854 if (n_ips < clo_depth + overestimate) { redo = False; }
861 for (i = n_alloc_fns_removed; i < n_ips; i++) {
872 n_ips -= n_alloc_fns_removed;
873 for (i = 0; i < n_ips; i++) {
878 if (n_ips >= clo_depth) {
880 n_ips = clo_depth; // Ignore any IPs below --depth.
887 return n_ips;
898 // After this call, the IPs we want are in ips[0]..ips[n_ips-1].
899 Int n_ips = get_IPs(tid, exclude_first_entry, ips);
901 // Should we ignore this allocation? (Nb: n_ips can be zero, eg. if
903 if (n_ips > 0 && fn_should_be_ignored(ips[0])) {
908 for (i = 0; i < n_ips; i++) {