HomeSort by: relevance | last modified time | path
    Searched defs:odd (Results 1 - 25 of 44) sorted by relevancy

1 2

  /src/sys/arch/arm/cortex/
cpu_in_cksum_neon.c 50 int odd = 0; local
92 * if the previous len was odd or the this buffer starts
93 * on an odd address, shift the csum by 8 so its properly
98 if (odd ^ ((uint32_t)dptr & 1))
104 odd ^= dlen & 1;
  /src/external/lgpl3/gmp/dist/tests/mpz/
t-oddeven.c 30 int odd, even; member in struct:__anon23379
62 if ((mpz_odd_p (n) != 0) != data[i].odd)
  /src/lib/libm/ld128/
s_tanpil.c 73 double odd; local
100 odd = fmodl(ai, 2.L) == 0 ? 1 : -1;
102 t = ar == 0 ? copysign(0., odd) : __kernel_tanpil(ar);
104 t = odd / vzero;
116 * or odd integer to set t = +0 or -0.
  /src/lib/libm/ld80/
s_tanpil.c 71 long double ax, hi, lo, odd, t; local
105 odd = (uint64_t)x & 1 ? -1 : 1;
110 t = ix == 0 ? copysignl(0, odd) : __kernel_tanpil(ax);
112 t = odd / vzero;
124 * or odd integer to set t = +0 or -0.
  /src/lib/libm/src/
s_tanpi.c 59 * tanpi(n) = +0 for positive even and negative odd integer n.
60 * tanpi(n) = -0 for positive odd and negative even integer n.
65 * odd integers n.
117 double ax, hi, lo, odd, t; local
151 odd = (uint64_t)x & 1 ? -1 : 1;
156 t = ix == 0 ? copysign(0, odd) : __kernel_tanpi(ax);
158 t = odd / vzero;
171 * or odd integer to set t = +0 or -0.
s_tanpif.c 65 float ax, hi, lo, odd, t; local
94 odd = (uint32_t)x & 1 ? -1 : 1;
99 t = ix == 0 ? copysignf(0, odd) : __kernel_tanpif(ax);
101 t = odd / vzero;
113 * or odd integer to set t = +0 or -0.
  /src/external/lgpl3/gmp/dist/mpn/generic/
sec_invert.c 75 odd. Returns 1 on success, and 0 on failure (i.e., if gcd (A, m) !=
99 and b odd at all times. Initially,
116 mp_limb_t odd, swap, cy; local
118 /* Always maintain b odd. The logic of the iteration is as
121 odd = a & 1
122 a -= odd * b
135 u -= odd * v
153 odd = ap[0] & 1;
155 swap = mpn_cnd_sub_n (odd, ap, ap, bp, n);
160 cy = mpn_cnd_sub_n (odd, up, up, vp, n)
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/ml_dsa/
ml_dsa_ntt.c 182 uint32_t odd = p->coeff[j + offset]; local
184 p->coeff[j] = reduce_once(odd + even);
186 * (uint64_t)(ML_DSA_Q + even - odd));
  /src/external/cddl/osnet/dist/uts/common/zmod/
crc32.c 383 unsigned long odd[GF2_DIM]; /* odd-power-of-two zeros operator */ local
389 /* put operator for one zero bit in odd */
390 odd[0] = 0xedb88320UL; /* CRC-32 polynomial */
393 odd[n] = row;
398 gf2_matrix_square(even, odd);
400 /* put operator for four zero bits in odd */
401 gf2_matrix_square(odd, even);
407 gf2_matrix_square(even, odd);
416 /* another iteration of the loop with odd and even swapped *
    [all...]
  /src/external/lgpl3/mpfr/dist/tests/
tsub1sp.c 180 /* for i even, b is the smallest number, for b odd the largest */
970 int inex, odd; local
1006 odd = mpfr_min_prec (z) == p;
1007 if (odd) /* add one ulp to z */
1016 if (odd)
tset_si.c 341 int s, i, j, odd, ctr = 0; local
359 odd = (s ? (unsigned long) ts[i] : tu[i]) & 1;
383 ((odd + k) & 1))
  /src/sys/dev/hpc/
bicons.c 393 register u_int8_t odd = (data & 0xaa); local
396 *xaddr = (odd | (even << 1)) | ((odd >> 1) & even);
440 register u_int8_t odd = (data & 0xaa); local
443 *xaddr = ~((odd | (even << 1)) | ((odd >> 1) & even));
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
fstrcmp.c 188 int odd = (fmid - bmid) & 1; local
191 * True if southeast corner is on an odd diagonal with respect
236 if (odd && bmin <= d && d <= bmax && bd[d] <= x)
277 if (!odd && fmin <= d && d <= fmax && x <= fd[d])
  /src/external/gpl2/gettext/dist/gettext-tools/libgettextpo/
fstrcmp.c 188 int odd = (fmid - bmid) & 1; local
191 * True if southeast corner is on an odd diagonal with respect
236 if (odd && bmin <= d && d <= bmax && bd[d] <= x)
277 if (!odd && fmin <= d && d <= fmax && x <= fd[d])
  /src/external/gpl2/gettext/dist/gnulib-local/lib/
fstrcmp.c 188 int odd = (fmid - bmid) & 1; local
191 * True if southeast corner is on an odd diagonal with respect
236 if (odd && bmin <= d && d <= bmax && bd[d] <= x)
277 if (!odd && fmin <= d && d <= fmax && x <= fd[d])
  /src/external/bsd/zstd/dist/contrib/match_finders/
zstd_edist.c 100 int odd = (forwardMid - backwardMid) & 1; local
143 if (odd && backwardMin <= diag && diag <= backwardMax && backwardDiag[diag] <= dictIdx) {
183 if (!odd && forwardMin <= diag && diag <= forwardMax && dictIdx <= forwardDiag[diag]) {
  /src/crypto/external/apache2/openssl/dist/crypto/ec/curve448/
curve448.c 579 uint32_t odd = (uint32_t)current >> pos; local
580 int32_t delta = odd & mask;
583 if (odd & (1 << (table_bits + 1)))
  /src/crypto/external/bsd/openssl/dist/crypto/ec/curve448/
curve448.c 585 uint32_t odd = (uint32_t)current >> pos; local
586 int32_t delta = odd & mask;
590 if (odd & (1 << (table_bits + 1)))
  /src/crypto/external/bsd/openssl.old/dist/crypto/ec/curve448/
curve448.c 576 uint32_t odd = (uint32_t)current >> pos; local
577 int32_t delta = odd & mask;
581 if (odd & (1 << (table_bits + 1)))
  /src/external/gpl2/diffutils/dist/src/
analyze.c 111 bool odd = (fmid - bmid) & 1; /* True if southeast corner is on an odd local
140 if (odd && bmin <= d && d <= bmax && bd[d] <= x)
167 if (!odd && fmin <= d && d <= fmax && x <= fd[d])
  /src/external/gpl2/xcvs/dist/diff/
analyze.c 113 int odd = (fmid - bmid) & 1; /* True if southeast corner is on an odd local
142 if (odd && bmin <= d && d <= bmax && bd[d] <= x)
169 if (!odd && fmin <= d && d <= fmax && x <= fd[d])
  /src/external/gpl2/groff/dist/src/libs/libdriver/
input.cpp 104 some drawing commands with an odd number of arguments to make the
187 displacement is the sum of all odd arguments and the vertical offset
411 inline bool odd(const int); // test if integer is odd
684 ignore a dummy integer argument if the requested number is odd.
703 if (odd(number)) {
734 if (odd(n))
990 /* odd():
991 Test whether argument is an odd number.
995 Return: True if odd, false otherwise
998 odd(const int n) function
    [all...]
  /src/external/gpl3/gcc/dist/gcc/fortran/
arith.cc 937 unsigned int odd = mpz_fdiv_ui (op2->value.integer, 2); local
938 if (odd)
  /src/external/gpl3/gcc.old/dist/gcc/fortran/
arith.cc 870 unsigned int odd = mpz_fdiv_ui (op2->value.integer, 2); local
871 if (odd)
  /src/crypto/external/apache2/openssl/dist/crypto/ml_kem/
ml_kem.c 845 uint16_t *pause = curr + offset, even, odd; local
851 odd = reduce(*peer * zeta);
852 *peer++ = reduce_once(even - odd + kPrime);
853 *curr++ = reduce_once(odd + even);
877 uint16_t *pause = curr + offset, even, odd; local
883 odd = *peer;
884 *peer++ = reduce(zeta * (even - odd + kPrime));
885 *curr++ = reduce_once(odd + even);

Completed in 71 milliseconds

1 2