Home
last modified time | relevance | path

Searched refs:steps (Results 1 – 25 of 644) sorted by relevance

12345678910>>...26

/netbsd-src/external/apache2/llvm/dist/libcxx/utils/libcxx/test/
H A Dformat.py232 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 = [
254 return self._executeShTest(test, litConfig, steps)
[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/gpl3/gcc/dist/libgcc/
H A Dlibgcov-profiler.c37 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()
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()
62 else if (delta >= steps) in __gcov_interval_profiler_atomic()
63 __atomic_fetch_add (&counters[steps], 1, __ATOMIC_RELAXED); in __gcov_interval_profiler_atomic()
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/
H A Dlibgcov-profiler.c48 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()
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()
73 else if (delta >= steps) in __gcov_interval_profiler_atomic()
74 __atomic_fetch_add (&counters[steps], 1, __ATOMIC_RELAXED); in __gcov_interval_profiler_atomic()
/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/sys/dev/pci/
H A Dvoyager.c478 int ifreq, factor, bit, steps; in voyager_set_pwm() local
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/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
H A Dexynos5422-odroidhc1.dts54 * by 2 steps. On Exynos5422/5800 that would
70 * further, down to 600 MHz (12 steps for big,
71 * 7 steps for LITTLE).
H A Dexynos5420-arndale-octa.dts97 * Reduce the CPU speed by 2 steps, down to: 1600 MHz
113 * Reduce the CPU speed down to 1200 MHz big (6 steps)
114 * and 800 MHz LITTLE (5 steps).
130 * big (11 steps) and 600 MHz LITTLE (7 steps).
H A Dexynos5422-odroidxu3-common.dtsi109 * by 2 steps. On Exynos5422/5800 that would
125 * further, down to 600 MHz (14 steps for big,
126 * 8 steps for LITTLE).
/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/usr.sbin/installboot/
H A Devboards.c1506 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()
1512 prop_object_iterator_release(steps); in evb_ubsteps_next_step()
1888 evb_ubsteps steps; in evb_uboot_setboot() local
1899 steps = evb_ubinstall_get_steps(params, install); in evb_uboot_setboot()
1900 while ((step = evb_ubsteps_next_step(params, steps)) != NULL) { in evb_uboot_setboot()
1953 steps = evb_ubinstall_get_steps(params, install); in evb_uboot_setboot()
1954 while ((step = evb_ubsteps_next_step(params, steps)) != NULL) { in evb_uboot_setboot()
/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
/netbsd-src/crypto/external/bsd/openssl/dist/ssl/statem/
H A DREADME.md22 event of NBIO events; handling the common flow of steps for reading a
23 message and the common flow of steps for writing a message etc
/netbsd-src/external/apache2/llvm/dist/libcxx/utils/ci/
H A Dbuildkite-pipeline-snapshot.sh19 steps:
H A Dbuildkite-pipeline-premerge.sh34 steps:
/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/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/openssh/dist/
H A Dxmss_wots.c70 …gned char *out, const unsigned char *in, unsigned int start, unsigned int steps, const wots_params… in gen_chain() argument
76 for (i = start; i < (start+steps) && i < params->w; i++) { in gen_chain()
/netbsd-src/external/ibm-public/postfix/dist/src/smtp/
H A Dsmtp_sasl_glue.c321 int steps = 0; in smtp_sasl_authenticate() local
404 if (++steps > 100) { in smtp_sasl_authenticate()
/netbsd-src/crypto/external/bsd/openssl.old/dist/
H A DREADME59 If you have any problems with OpenSSL then please take the following steps
75 - Problem Description (steps that will reproduce the problem, if known)
/netbsd-src/external/mit/isl/dist/
H A Disl_transitive_closure.c225 __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()
776 struct isl_mat *steps = NULL; in construct_extended_path() local
787 steps = isl_mat_alloc(map->ctx, map->n, d); in construct_extended_path()
788 if (!steps) in construct_extended_path()
801 &steps->row[n][j]); in construct_extended_path()
822 steps->n_row = n; in construct_extended_path()
[all …]
/netbsd-src/games/adventure/
H A Dinit.c109 int keys, lamp, grate, cage, rod, rod2, steps, /* mnemonics */ variable
192 steps = vocab(DECR('s', 't', 'e', 'p', 's'), 1, 0); in linkdata()
H A Dmain.c134 if (obj == steps && toting(nugget)) in main()
148 if (obj == steps && loc == fixed[steps]) in main()

12345678910>>...26