Home | History | Annotate | Download | only in massif

Lines Matching refs:threshold

43 # Threshold dictating what percentage an entry must represent for us to
45 my $threshold = 1.0;
70 --threshold=<m.n> significance threshold, in percent [$threshold]
113 # --threshold=X (tolerates a trailing '%')
114 } elsif ($arg =~ /^--threshold=([\d\.]+)%?$/) {
115 $threshold = $1;
176 return $is_top_node || 0 == $threshold ||
177 ( $total_szB != 0 && $xpt_szB * 100 / $total_szB >= $threshold );
235 . "ms_print's threshold (%05.2f%%)\n",
237 $n_insig_children, $threshold);