Home
last modified time | relevance | path

Searched full:steps (Results 1 – 25 of 1608) sorted by relevance

12345678910>>...65

/netbsd-src/external/gpl3/gcc/dist/libgcc/
H A Dlibgcov-profiler.c30 /* If VALUE is in interval <START, START + STEPS - 1>, then increases the
32 the interval, COUNTERS[STEPS] or COUNTERS[STEPS + 1] is increased
37 int start, unsigned steps) in __gcov_interval_profiler() argument
41 counters[steps + 1]++; in __gcov_interval_profiler()
42 else if (delta >= steps) in __gcov_interval_profiler()
43 counters[steps]++; in __gcov_interval_profiler()
50 /* If VALUE is in interval <START, START + STEPS - 1>, then increases the
52 the interval, COUNTERS[STEPS] or COUNTERS[STEPS + 1] is increased
57 int start, unsigned steps) in __gcov_interval_profiler_atomic() argument
61 __atomic_fetch_add (&counters[steps + 1], 1, __ATOMIC_RELAXED); in __gcov_interval_profiler_atomic()
[all …]
/netbsd-src/external/apache2/llvm/dist/libcxx/utils/libcxx/test/
H A Dformat.py156 separate compilation and linking steps in this case.
232 steps = [ ] # The steps are already in the script
233 return self._executeShTest(test, litConfig, steps)
235 steps = [
238 return self._executeShTest(test, litConfig, steps)
240 steps = [
243 return self._executeShTest(test, litConfig, steps)
245 steps = [
248 return self._executeShTest(test, litConfig, steps)
250 steps = [
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/
H A Dlibgcov-profiler.c41 /* If VALUE is in interval <START, START + STEPS - 1>, then increases the
43 the interval, COUNTERS[STEPS] or COUNTERS[STEPS + 1] is increased
48 int start, unsigned steps) in __gcov_interval_profiler() argument
52 counters[steps + 1]++; in __gcov_interval_profiler()
53 else if (delta >= steps) in __gcov_interval_profiler()
54 counters[steps]++; in __gcov_interval_profiler()
61 /* If VALUE is in interval <START, START + STEPS - 1>, then increases the
63 the interval, COUNTERS[STEPS] or COUNTERS[STEPS + 1] is increased
68 int start, unsigned steps) in __gcov_interval_profiler_atomic() argument
72 __atomic_fetch_add (&counters[steps + 1], 1, __ATOMIC_RELAXED); in __gcov_interval_profiler_atomic()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/sh/
H A Ddivtab.c137 int steps = N_ENTRIES / 2; in main() local
138 double step = 1. / steps; in main()
143 double x_low = (i < steps ? 1. : -3.) + i * step; in main()
183 calc_defect (-2., constants[steps], factors[steps])); in main()
187 for (i = steps; i < 2 * steps; i++) in main()
190 for (i = steps; i < 2*steps; i++) in main()
192 printf ("\t.skip %d\n", steps); in main()
195 printf ("\t.skip %d\n", steps); in main()
197 for (i = 0; i < steps; i++) in main()
200 for (i = 0; i < steps; i++) in main()
/netbsd-src/external/gpl3/gcc/dist/gcc/config/sh/
H A Ddivtab.cc137 int steps = N_ENTRIES / 2; in main() local
138 double step = 1. / steps; in main()
143 double x_low = (i < steps ? 1. : -3.) + i * step; in main()
183 calc_defect (-2., constants[steps], factors[steps])); in main()
187 for (i = steps; i < 2 * steps; i++) in main()
190 for (i = steps; i < 2*steps; i++) in main()
192 printf ("\t.skip %d\n", steps); in main()
195 printf ("\t.skip %d\n", steps); in main()
197 for (i = 0; i < steps; i++) in main()
200 for (i = 0; i < steps; i++) in main()
/netbsd-src/external/bsd/tre/dist/tests/
H A Dbench.c145 int steps = 20; in main() local
164 steps = atoi(optarg); in main()
197 len = len + (max_len/steps); in main()
217 len = len + (max_len/steps); in main()
236 len = len + (max_len/steps); in main()
256 len = len + (max_len/steps); in main()
288 len = len + (max_len/steps); in main()
317 len = len + (max_len/steps); in main()
343 len = len + (max_len/steps); in main()
373 len = len + (max_len/steps); in main()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/utils/analyzer/
H A DSumTimerInfo.py47 if "The # of times we reached the max number of steps" in line:
54 if "The # of steps executed" in line:
73 print(f"Reached max steps {reached_max_steps}")
74 print(f"Number of steps {num_steps}")
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DCoreEngine.cpp45 "The # of steps executed.");
47 "The # of times we reached the max number of steps.");
78 /// ExecuteWorkList - Run the worklist algorithm for a maximum number of steps.
79 bool CoreEngine::ExecuteWorkList(const LocationContext *L, unsigned Steps, in ExecuteWorkList() argument
120 // Check if we have a steps limit in ExecuteWorkList()
121 bool UnlimitedSteps = Steps == 0; in ExecuteWorkList()
123 // a very large number of maximum steps. in ExecuteWorkList()
126 G.reserve(std::min(Steps,PreReservationCap)); in ExecuteWorkList()
130 if (Steps == 0) { in ExecuteWorkList()
134 --Steps; in ExecuteWorkList()
[all …]
/netbsd-src/external/mit/libuv/dist/.github/workflows/
H A DCI-unix.yml20 steps:
37 steps:
65 steps:
103 steps:
/netbsd-src/share/man/man9/
H A Ddksubr.9124 Handles open steps for the
129 callback to handle initialization steps.
131 Handles close steps for the
136 callback to handle finalization steps.
/netbsd-src/sys/dev/pci/
H A Dvoyager.c478 int ifreq, factor, bit, steps; in voyager_set_pwm() local
482 * find the smallest divider that gets us within 4096 steps of the in voyager_set_pwm()
489 steps = 96000000 / (factor * freq); in voyager_set_pwm()
496 hi = steps * duty_cycle / 1000; in voyager_set_pwm()
499 lo = steps - hi; in voyager_set_pwm()
501 hi = steps - 1; in voyager_set_pwm()
504 DPRINTF("%d hz -> %d, %d, %d / %d\n", freq, factor, steps, lo, hi); in voyager_set_pwm()
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/bn/
H A Dbn_rsa_fips186_4.c94 * See section FIPS 186-4 B.3.6 (Steps 4.2/5.2).
138 * See FIPS 186-4 B.3.6 (Steps 4 & 5)
181 /* (Steps 4.1/5.1): Randomly generate Xp1 if it is not passed in */ in ossl_bn_rsa_fips186_4_gen_prob_primes()
188 /* (Steps 4.1/5.1): Randomly generate Xp2 if it is not passed in */ in ossl_bn_rsa_fips186_4_gen_prob_primes()
196 /* (Steps 4.2/5.2) - find first auxiliary probable primes */ in ossl_bn_rsa_fips186_4_gen_prob_primes()
204 /* (Steps 4.3/5.3) - generate prime */ in ossl_bn_rsa_fips186_4_gen_prob_primes()
/netbsd-src/distrib/notes/prep/
H A Dupgrade29 Because of the difficulty in performing all these steps, it is recommended that
34 will allow simple upgrade without these additional steps.
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DHowToBuildWithPGO.rst83 3. Use the instrumented Clang to generate profiles, which consists of two steps:
93 In more detailed steps:
114 3. As mentioned above, this has two steps: gathering profile data, and then
170 -DLLVM_TABLEGEN=/path/to/stage1/bin/llvm-tblgen`` to steps 2 and onward to avoid
/netbsd-src/crypto/external/bsd/netpgp/dist/ref/
H A Drfc2437.txt351 Steps:
379 Steps:
445 Steps:
479 Steps:
549 Steps:
592 Steps:
609 their operations consist only of steps to process data with a key,
610 and do not include steps for obtaining or validating the key. Thus,
741 Steps:
791 Steps:
[all …]
/netbsd-src/external/lgpl3/gmp/dist/tune/
H A Dmodlinv.c39 "1-" form. This has the same number of steps, but "1-" is on the
74 multiplying, due to the number of steps that must be performed. Much
102 steps. */
/netbsd-src/usr.sbin/installboot/
H A Devboards.c196 * -- board uses a single set of steps for all boot media
206 * -- These installation steps will be selectable using
232 * The installation objects provide a description of the steps needed
267 * Some installations require multiple steps with special handling.
395 * may be the case that two media types have identical steps. It
412 * <-- Steps for eMMC are identical to SDMMC on this board. -->
642 * over the steps.) in validate_ubinstall_object()
1491 * Get the install steps for a given install object.
1506 evb_ubsteps_next_step(ib_params *params, evb_ubsteps steps) in evb_ubsteps_next_step() argument
1508 prop_dictionary_t step = prop_object_iterator_next(steps); in evb_ubsteps_next_step()
[all …]
/netbsd-src/external/cddl/osnet/dist/lib/libdtrace/common/
H A Ddt_errtags.h257 D_LLQUANT_NSTEPTYPE, /* llquantize() bad # steps type */
258 D_LLQUANT_NSTEPVAL, /* llquantize() bad # steps value */
259 D_LLQUANT_NSTEPMATCH, /* llquantize() mismatch on # steps */
261 D_LLQUANT_FACTORNSTEPS, /* llquantize() # steps < factor */
262 D_LLQUANT_FACTOREVEN, /* llquantize() bad # steps/factor */
/netbsd-src/external/mit/isl/dist/
H A Disl_transitive_closure.c156 * If "project" is set and if "steps" can only result in acyclic paths,
212 /* Given a set of n offsets v_i (the rows of "steps"), construct a relation
215 * by taking a non-negative number of steps along any of
221 * For any element in this relation, the number of steps taken
225 __isl_keep isl_mat *steps) in path_along_steps() argument
236 if (d < 0 || nparam < 0 || !steps) in path_along_steps()
239 n = steps->n_row; in path_along_steps()
247 isl_assert(steps->ctx, i == k, goto error); in path_along_steps()
267 steps->row[j][i]); in path_along_steps()
524 * by taking a non-negative number of steps along any of
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dvalue-prof.cc235 + hist->hdata.intvl.steps - 1)); in dump_histogram_value()
238 for (i = 0; i < hist->hdata.intvl.steps; i++) in dump_histogram_value()
243 if (i != hist->hdata.intvl.steps - 1) in dump_histogram_value()
324 streamer_write_uhwi (ob, hist->hdata.intvl.steps); in stream_out_histogram_value()
375 new_val->hdata.intvl.steps = streamer_read_uhwi (ib); in stream_in_histogram_value()
376 ncounters = new_val->hdata.intvl.steps + 2; in stream_in_histogram_value()
1136 unsigned int i, steps; in gimple_mod_subtract_transform() local
1158 for (i = 0; i < histogram->hdata.intvl.steps; i++) in gimple_mod_subtract_transform()
1163 steps = histogram->hdata.intvl.steps; in gimple_mod_subtract_transform()
1182 for (i = 0; i < histogram->hdata.intvl.steps; i++) in gimple_mod_subtract_transform()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dvalue-prof.c235 + hist->hdata.intvl.steps - 1)); in dump_histogram_value()
238 for (i = 0; i < hist->hdata.intvl.steps; i++) in dump_histogram_value()
243 if (i != hist->hdata.intvl.steps - 1) in dump_histogram_value()
325 streamer_write_uhwi (ob, hist->hdata.intvl.steps); in stream_out_histogram_value()
372 new_val->hdata.intvl.steps = streamer_read_uhwi (ib); in stream_in_histogram_value()
373 ncounters = new_val->hdata.intvl.steps + 2; in stream_in_histogram_value()
1099 unsigned int i, steps; in gimple_mod_subtract_transform() local
1121 for (i = 0; i < histogram->hdata.intvl.steps; i++) in gimple_mod_subtract_transform()
1126 steps = histogram->hdata.intvl.steps; in gimple_mod_subtract_transform()
1145 for (i = 0; i < histogram->hdata.intvl.steps; i++) in gimple_mod_subtract_transform()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/docs/
H A DToolchain.rst71 steps are performed by the same tool, it is common for the steps to be
74 When given an output of one of the above steps as an input, earlier steps
79 above steps, without running them. The ``-v`` (verbose) flag will print the
/netbsd-src/external/gpl2/xcvs/dist/contrib/
H A Dcvshelp.man31 Use the following steps to prepare to use CVS:
396 The initial steps in this process are identical to placing a
399 that point the steps diverge.
509 Proceed with the steps described for merging a subsequent third-party
/netbsd-src/distrib/syspkg/notes/
H A DWORKPLAN8 The steps toward this goal are as follows. Step a.) has already occurred,
9 and the remaining steps will begin this week, with changes influenced by
/netbsd-src/crypto/external/bsd/openssl.old/dist/ssl/statem/
H A DREADME21 event of NBIO events; handling the common flow of steps for reading a
22 message and the common flow of steps for writing a message etc

12345678910>>...65