HomeSort by: relevance | last modified time | path
    Searched defs:count_in (Results 1 - 6 of 6) sorted by relevancy

  /src/usr.bin/moduli/qsafe/
qsafe.c 81 uint32_t count_in = 0; local
123 count_in++;
128 " line\n", count_in);
144 count_in);
166 "Sophie-Germaine\n", count_in,
183 count_in, in_type);
200 "mismatch\n", count_in, in_size);
208 "too short\n", count_in, in_size);
243 count_in, generator_known, generator_wanted);
260 "possible prime test\n", count_in);
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
cfgloopanal.cc 266 profile_count count_in = profile_count::zero (), local
273 count_in += e->count ();
281 else if (!count_in.nonzero_p ())
289 expected = (count_latch.to_gcov_type () + count_in.to_gcov_type ()
290 - 1) / count_in.to_gcov_type ();
292 && count_latch.reliable_p () && count_in.reliable_p ())
cfgloopmanip.cc 548 profile_count count_in = preheader_e->count (); local
550 if (count_in > profile_count::zero ()
589 count_in = count_in.apply_scale (iteration_bound, 1);
590 p = count_in.probability_in (loop->header->count);
1124 profile_count count_in = header->count; local
1126 profile_count count_out_orig = orig ? orig->count () : count_in - count_le;
1127 profile_probability prob_pass_thru = count_le.probability_in (count_in);
1129 (count_le + count_out_orig).probability_in (count_in);
1169 scale_act = wanted_count.probability_in (count_in);
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
cfgloopanal.cc 242 profile_count count_in = profile_count::zero (); local
250 count_in += e->count ();
256 count_in += e->count ();
260 return count_in;
290 profile_count count_in = loop_count_in (loop);
294 *ret = (header_count - count_in).to_sreal_scale (count_in, &known);
299 /* Header should have at least count_in many executions.
301 if (header_count < count_in && header_count.differs_from_p (count_in))
    [all...]
cfgloopmanip.cc 725 profile_count count_in = loop_count_in (loop);
728 count_in * (iteration_bound + 1) */
730 = (count_in * (iteration_bound + 1)).probability_in (loop->header->count);
742 /* In a consistent profile unadjusted_exit_count should be same as count_in,
1260 profile_count count_in = header->count; local
1262 profile_count count_out_orig = orig ? orig->count () : count_in - count_le;
1263 profile_probability prob_pass_thru = count_le.probability_in (count_in);
1298 new_count_le.probability_in (count_in);
1302 if (!count_in.nonzero_p ())
1319 if (!count_in.nonzero_p ()
    [all...]
  /src/crypto/external/bsd/openssh/dist/
moduli.c 538 uint32_t count_in = 0, count_out = 0, count_possible = 0; local
575 while (fgets(lp, QLINESIZE + 1, in) != NULL && count_in < end_lineno) {
576 count_in++;
577 if (count_in <= last_processed) {
579 "specified start line", count_in);
583 write_checkpoint(checkpoint_file, count_in);
584 print_progress(start_lineno, count_in, end_lineno);
586 debug2("%10u: comment or short line", count_in);
601 debug2("%10u: known composite", count_in);
620 debug2("%10u: (%u) Sophie-Germain", count_in, in_type)
    [all...]

Completed in 95 milliseconds