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;
75 --threshold=<m.n> significance threshold, in percent [$threshold]
118 # --threshold=X (tolerates a trailing '%')
119 } elsif ($arg =~ /^--threshold=([\d\.]+)%?$/) {
120 $threshold = $1;
181 return $is_top_node || 0 == $threshold ||
182 ( $total_szB != 0 && $xpt_szB * 100 / $total_szB >= $threshold );
240 . "ms_print's threshold (%05.2f%%)\n",
242 $n_insig_children, $threshold);