HomeSort by: relevance | last modified time | path
    Searched refs:step (Results 1 - 25 of 793) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/lgpl3/gmp/dist/mpz/
hamdist.c 70 mp_size_t old_vsize, step; variable
125 step = old_vsize - vsize - 1;
126 count += step * GMP_NUMB_BITS;
127 step = MIN (step, usize);
128 if (step != 0)
130 count -= mpn_popcount (up, step);
131 usize -= step;
132 up += step;
149 step = MIN (usize, vsize)
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/
watchpoint-fork-mt.c 32 /* Non-atomic `var++' should not hurt as we synchronize the threads by the STEP
54 volatile int step; variable
61 if (step >= 3)
64 while (step != 1)
72 step = 2;
73 while (step != 3)
75 if (step == 99)
83 if (step >= 5)
88 step = 4;
89 while (step != 5
    [all...]
watchpoint-fork.h 26 extern volatile int step;
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/
watchpoint-fork-mt.c 32 /* Non-atomic `var++' should not hurt as we synchronize the threads by the STEP
54 volatile int step; variable
61 if (step >= 3)
64 while (step != 1)
72 step = 2;
73 while (step != 3)
75 if (step == 99)
83 if (step >= 5)
88 step = 4;
89 while (step != 5
    [all...]
watchpoint-fork.h 26 extern volatile int step;
  /src/external/gpl3/gcc/dist/libbacktrace/
allocfail.sh 66 step=1
81 # So, run with step 1 initially, and increase the step once we have 10
82 # subsequent passes, and drop back to step 1 once we encounter another
87 step=$((step * 10))
92 step=1
100 i=$(($i + $step))
  /src/external/gpl3/gcc.old/dist/libbacktrace/
allocfail.sh 66 step=1
81 # So, run with step 1 initially, and increase the step once we have 10
82 # subsequent passes, and drop back to step 1 once we encounter another
87 step=$((step * 10))
92 step=1
100 i=$(($i + $step))
  /src/external/gpl3/gdb/dist/libbacktrace/
allocfail.sh 66 step=1
81 # So, run with step 1 initially, and increase the step once we have 10
82 # subsequent passes, and drop back to step 1 once we encounter another
87 step=$((step * 10))
92 step=1
100 i=$(($i + $step))
  /src/external/gpl3/gdb.old/dist/libbacktrace/
allocfail.sh 66 step=1
81 # So, run with step 1 initially, and increase the step once we have 10
82 # subsequent passes, and drop back to step 1 once we encounter another
87 step=$((step * 10))
92 step=1
100 i=$(($i + $step))
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.perf/
single-step.py 20 def __init__(self, step):
21 super(SingleStep, self).__init__("single-step")
22 self.step = step
25 for _ in range(0, self.step):
34 func = lambda: self._run(i * self.step)
35 self.measure.measure(func, i * self.step)
skip-command.py 20 def __init__(self, name, step):
22 self.step = step
26 gdb.execute("step", False, True)
30 gdb.execute("step", False, True)
34 func = lambda: self._run(i * self.step)
35 self.measure.measure(func, i * self.step)
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.perf/
single-step.py 20 def __init__(self, step):
21 super(SingleStep, self).__init__("single-step")
22 self.step = step
25 for _ in range(0, self.step):
34 func = lambda: self._run(i * self.step)
35 self.measure.measure(func, i * self.step)
skip-command.py 20 def __init__(self, name, step):
22 self.step = step
26 gdb.execute("step", False, True)
30 gdb.execute("step", False, True)
34 func = lambda: self._run(i * self.step)
35 self.measure.measure(func, i * self.step)
  /src/external/bsd/ipf/dist/lib/
interror.c 531 int l = -1, r = IPF_NUM_ERRORS + 1, step; local
532 step = (r - l) / 2;;
534 while (step != 0) {
535 ie = ipf_errors + l + step;
538 step = l + step;
540 r = step;
542 l = step;
543 step = (r - l) / 2;;
  /src/external/lgpl3/gmp/dist/scanf/
fscanffuns.c 52 step (FILE *fp, int n) function
58 (gmp_doscan_step_t) step,
  /src/crypto/external/apache2/openssl/dist/crypto/ml_dsa/
ml_dsa_ntt.c 131 int step; local
134 /* Step: 1, 2, 4, 8, ..., 128 */
135 for (step = 1; step < ML_DSA_NUM_POLY_COEFFICIENTS; step <<= 1) {
138 for (i = 0; i < step; i++) {
139 const uint32_t z_step_root = zetas_montgomery[step + i];
164 * Step: 128, 64, 32, 16, ..., 1
167 int i, j, k, offset, step = ML_DSA_NUM_POLY_COEFFICIENTS; local
175 step >>= 1
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
tree-vector-builder.cc 27 /* Return a vector element with the value BASE + FACTOR * STEP. */
31 const wide_int &step) const
34 wi::to_wide (base) + factor * step);
  /src/external/gpl3/gcc.old/dist/gcc/
tree-vector-builder.cc 27 /* Return a vector element with the value BASE + FACTOR * STEP. */
31 const wide_int &step) const
34 wi::to_wide (base) + factor * step);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.fortran/
nested-funcs-2.f90 34 call step() ! pre_step
54 subroutine step() subroutine in program:contains_keyword
55 print '(A)', "step" ! post_step
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.fortran/
nested-funcs-2.f90 34 call step() ! pre_step
54 subroutine step() subroutine in program:contains_keyword
55 print '(A)', "step" ! post_step
  /src/sys/arch/amiga/amiga/
busfuncs.c 220 int step; local
222 step = 1 << t->stride;
224 x = ((*q) << 8) | *(q + step);
233 int step; local
235 step = 1 << t->stride;
239 *(q+step) = v;
247 int step; local
249 step = 1 << t->stride;
253 *p++ = ((*q)<<8) | *(q+step);
262 int step; local
280 int step; local
300 int step; local
319 int step; local
334 int step; local
405 int step; local
422 int step; local
439 int step; local
454 int step; local
    [all...]
  /src/external/bsd/kyua-cli/dist/utils/sqlite/
statement_test.cpp 53 ATF_REQUIRE(!stmt.step());
66 ATF_REQUIRE(stmt.step());
67 ATF_REQUIRE(!stmt.step());
77 ATF_REQUIRE(!stmt.step());
78 REQUIRE_API_ERROR("sqlite3_step", stmt.step());
113 ATF_REQUIRE(stmt.step());
115 ATF_REQUIRE(!stmt.step());
126 ATF_REQUIRE(stmt.step());
129 ATF_REQUIRE(!stmt.step());
140 ATF_REQUIRE(stmt.step());
    [all...]
  /src/external/mpl/bind/dist/bin/tests/system/rollover/
tests_rollover_zsk_prepublication.py 95 # manual-mode: Nothing changing in the zone, no 'dnssec -step' required.
98 step = {
110 isctest.kasp.check_rollover_step(ns3, CONFIG, policy, step)
127 # Same as step 1.
128 step = {
137 keys = isctest.kasp.check_rollover_step(ns3, CONFIG, policy, step)
144 # Force step.
146 ns3.rndc(f"dnssec -step {zone}")
151 step = {
167 isctest.kasp.check_rollover_step(ns3, CONFIG, policy, step)
    [all...]
tests_rollover_dynamic2inline.py 35 step = {
44 isctest.kasp.check_rollover_step(ns3, config, policy, step)
50 isctest.kasp.check_rollover_step(ns3, config, policy, step)
tests_rollover_enable_dnssec.py 86 step = {
94 isctest.kasp.check_rollover_step(ns3, CONFIG, policy, step)
100 # Force step.
102 ns3.rndc(f"dnssec -step {zone}")
105 step = {
115 isctest.kasp.check_rollover_step(ns3, CONFIG, policy, step)
131 # manual-mode: Nothing changing in the zone, no 'dnssec -step' required.
133 step = {
147 isctest.kasp.check_rollover_step(ns3, CONFIG, policy, step)
164 # Same as step 2, but zone signatures have become OMNIPRESENT
    [all...]

Completed in 28 milliseconds

1 2 3 4 5 6 7 8 91011>>