Home
last modified time | relevance | path

Searched refs:odd (Results 1 – 25 of 772) sorted by relevance

12345678910>>...31

/netbsd-src/external/lgpl3/mpc/dist/tests/
H A Dtan.dat27 # Rule [odd]: tan(-z) = -tan(z)
38 # [odd]: tan(-0 + i*0) = -0 + i*0
40 # [odd+conj]: tan(-0 - i*0) = -0 - i*0
50 # [odd]: tan(-inf + i*x) = nan + i*nan for finite x
63 # idem for [odd] since nan has no sign
72 # [odd]: tan (-y + i*inf) = -0*sin(2*y) + i*1
75 # [odd+conj]: tan (-y - i*inf) = -0*sin(2*y) - i*1
84 # [odd]: tan (-inf + i*inf) = +/-0 + i*1
86 # [odd+conj]: tan (-inf - i*inf) = +/-0 - i*1
94 # [odd] = [conj] since nan has no sign, and -(+/-0) = +/-0
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/test/ssl-tests/
H A D13-fragmentation.conf14 test-9 = 9-large-app-data-odd-fragment-size
17 test-12 = 12-large-app-data-aes-sha1-multibuffer-odd-fragment
18 test-13 = 13-large-app-data-aes-sha2-multibuffer-odd-fragment
238 [9-large-app-data-odd-fragment-size]
239 ssl_conf = 9-large-app-data-odd-fragment-size-ssl
241 [9-large-app-data-odd-fragment-size-ssl]
242 server = 9-large-app-data-odd-fragment-size-server
243 client = 9-large-app-data-odd-fragment-size-client
245 [9-large-app-data-odd-fragment-size-server]
250 [9-large-app-data-odd-fragment-size-client]
[all …]
H A D13-fragmentation.conf.in96 name => "large-app-data-odd-fragment-size",
137 name => "large-app-data-aes-sha1-multibuffer-odd-fragment",
149 name => "large-app-data-aes-sha2-multibuffer-odd-fragment",
/netbsd-src/crypto/external/bsd/openssl/dist/test/ssl-tests/
H A D13-fragmentation.cnf14 test-9 = 9-large-app-data-odd-fragment-size
17 test-12 = 12-large-app-data-aes-sha1-multibuffer-odd-fragment
18 test-13 = 13-large-app-data-aes-sha2-multibuffer-odd-fragment
238 [9-large-app-data-odd-fragment-size]
239 ssl_conf = 9-large-app-data-odd-fragment-size-ssl
241 [9-large-app-data-odd-fragment-size-ssl]
242 server = 9-large-app-data-odd-fragment-size-server
243 client = 9-large-app-data-odd-fragment-size-client
245 [9-large-app-data-odd-fragment-size-server]
250 [9-large-app-data-odd-fragment-size-client]
[all …]
H A D13-fragmentation.cnf.in96 name => "large-app-data-odd-fragment-size",
137 name => "large-app-data-aes-sha1-multibuffer-odd-fragment",
149 name => "large-app-data-aes-sha2-multibuffer-odd-fragment",
/netbsd-src/sys/arch/hppa/spmath/
H A Dcnv_float.h116 #define Dbl_to_sgl_mantissa(srcA,srcB,dest,inexact,guard,sticky,odd) \ argument
121 odd = Dbit2p2(srcB)
123 #define Dbl_to_sgl_denormalized(srcA,srcB,exp,dest,inexact,guard,sticky,odd,tiny) \ argument
132 odd = dest << 31; \
152 if (guard && (sticky || odd)) { \
162 guard = odd; \
168 odd = dest << 31; \
177 odd = dest << 31; \
188 odd = dest << 31; \
201 odd = 0; \
/netbsd-src/external/cddl/osnet/dist/uts/common/zmod/
H A Dcrc32.c383 unsigned long odd[GF2_DIM]; /* odd-power-of-two zeros operator */ local
390 odd[0] = 0xedb88320UL; /* CRC-32 polynomial */
393 odd[n] = row;
398 gf2_matrix_square(even, odd);
401 gf2_matrix_square(odd, even);
407 gf2_matrix_square(even, odd);
417 gf2_matrix_square(odd, even);
419 crc1 = gf2_matrix_times(odd, crc1);
/netbsd-src/lib/libm/src/
H A Ds_tanpif.c65 float ax, hi, lo, odd, t; in tanpif() local
94 odd = (uint32_t)x & 1 ? -1 : 1; in tanpif()
99 t = ix == 0 ? copysignf(0, odd) : __kernel_tanpif(ax); in tanpif()
101 t = odd / vzero; in tanpif()
H A Ds_tanpi.c117 double ax, hi, lo, odd, t; in tanpi() local
151 odd = (uint64_t)x & 1 ? -1 : 1; in tanpi()
156 t = ix == 0 ? copysign(0, odd) : __kernel_tanpi(ax); in tanpi()
158 t = odd / vzero; in tanpi()
/netbsd-src/lib/libm/ld128/
H A Ds_tanpil.c73 double odd; in tanpil() local
100 odd = fmodl(ai, 2.L) == 0 ? 1 : -1; in tanpil()
102 t = ar == 0 ? copysign(0., odd) : __kernel_tanpil(ar); in tanpil()
104 t = odd / vzero; in tanpil()
/netbsd-src/lib/libm/ld80/
H A Ds_tanpil.c71 long double ax, hi, lo, odd, t; in tanpil() local
105 odd = (uint64_t)x & 1 ? -1 : 1; in tanpil()
110 t = ix == 0 ? copysignl(0, odd) : __kernel_tanpil(ax); in tanpil()
112 t = odd / vzero; in tanpil()
/netbsd-src/external/lgpl3/gmp/dist/mpn/generic/
H A Dsqrtrem.c316 mpn_dc_sqrt (mp_ptr sp, mp_srcptr np, mp_size_t n, unsigned nsh, unsigned odd) argument
325 ASSERT (np[2 * n - 1 - odd] != 0);
331 ASSERT (n >= l + 2 && l + 2 >= h && h > l && l >= 1 + odd);
337 int o = l > (1 + odd);
338 ASSERT_NOCARRY (mpn_lshift (tp - o, np + l - 1 - o - odd, n + h + 1 + o, 2 * nsh));
341 MPN_COPY (tp, np + l - 1 - odd, n + h + 1);
365 (qp[1] & (GMP_NUMB_MASK >> ((GMP_NUMB_BITS >> odd)- nsh - 1)))) == 0)
412 c = mpn_cmp (np, scratch + odd, l - odd);
424 if ((odd | nsh) != 0)
425 mpn_rshift (sp, sp, n, nsh + (odd ? GMP_NUMB_BITS / 2 : 0));
H A Dsec_invert.c116 mp_limb_t odd, swap, cy; in mpn_sec_invert() local
153 odd = ap[0] & 1; in mpn_sec_invert()
155 swap = mpn_cnd_sub_n (odd, ap, ap, bp, n); in mpn_sec_invert()
160 cy = mpn_cnd_sub_n (odd, up, up, vp, n); in mpn_sec_invert()
/netbsd-src/sys/arch/arm/cortex/
H A Dcpu_in_cksum_neon.c48 int odd = 0; in cpu_in_cksum() local
96 if (odd ^ ((uint32_t)dptr & 1)) in cpu_in_cksum()
102 odd ^= dlen & 1; in cpu_in_cksum()
/netbsd-src/sys/dev/hpc/
H A Dbicons.c393 register u_int8_t odd = (data & 0xaa); in put_oxel_D2_M2L_3x2() local
396 *xaddr = (odd | (even << 1)) | ((odd >> 1) & even); in put_oxel_D2_M2L_3x2()
440 register u_int8_t odd = (data & 0xaa); in put_oxel_D2_M2L_0x2() local
443 *xaddr = ~((odd | (even << 1)) | ((odd >> 1) & even)); in put_oxel_D2_M2L_0x2()
/netbsd-src/sys/arch/m68k/m68k/
H A Dw16copy.s74 | zero the odd bytes:
75 4: andil #3, %d0 | odd byte count in %d0
77 bcs 6f | skip ahead if no odd bytes
125 bra 6f | jump ahead to copy the odd bytes
/netbsd-src/external/lgpl3/gmp/dist/tests/mpz/
H A Dt-oddeven.c30 int odd, even; in check_data() member
62 if ((mpz_odd_p (n) != 0) != data[i].odd) in check_data()
/netbsd-src/games/quiz/datfiles/
H A Dseq-easy5 1,3,5,7,9,11:13{(odd nos.)}:odd [integ|numb]ers
/netbsd-src/external/gpl3/gcc/dist/gcc/config/sparc/
H A Dconstraints.md156 ;; So this means that we would have to put both the even and odd
163 ;; from use in certain modes, it still can allocate an odd hard register
167 ;; sets both the odd and even part of an even register pair in the
168 ;; regset. Therefore IRA can and will allocate odd registers for
171 ;; There are legitimate cases where DImode values can end up in odd
175 ;; necessary. The odd register splitters cannot match if, for
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/sparc/
H A Dconstraints.md156 ;; So this means that we would have to put both the even and odd
163 ;; from use in certain modes, it still can allocate an odd hard register
167 ;; sets both the odd and even part of an even register pair in the
168 ;; regset. Therefore IRA can and will allocate odd registers for
171 ;; There are legitimate cases where DImode values can end up in odd
175 ;; necessary. The odd register splitters cannot match if, for
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/chacha/asm/
H A Dchacha-armv4.pl69 my $odd = $d0&1;
71 my ($xd,$xd_) = $odd ? (@t[2],@x[$d1]) : (@x[$d0],@t[2]);
124 "&ldr ($xd,'[sp,#4*(16+$d2)]')" ) if ($odd);
130 "&ldr ($xd_,'[sp,#4*(16+$d3)]')" ) if (!$odd);
135 $xd=@x[$d2] if (!$odd);
136 $xd_=@x[$d3] if ($odd);
642 my $odd = pop;
666 "&vext_8 ($b,$b,$b,$odd?12:4)",
667 "&vext_8 ($d,$d,$d,$odd?4:12)"
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/chacha/asm/
H A Dchacha-armv4.pl67 my $odd = $d0&1;
69 my ($xd,$xd_) = $odd ? (@t[2],@x[$d1]) : (@x[$d0],@t[2]);
122 "&ldr ($xd,'[sp,#4*(16+$d2)]')" ) if ($odd);
128 "&ldr ($xd_,'[sp,#4*(16+$d3)]')" ) if (!$odd);
133 $xd=@x[$d2] if (!$odd);
134 $xd_=@x[$d3] if ($odd);
633 my $odd = pop;
657 "&vext_8 ($b,$b,$b,$odd?12:4)",
658 "&vext_8 ($d,$d,$d,$odd?4:12)"
/netbsd-src/external/lgpl3/gmp/dist/mpn/sparc64/
H A Dgcd_11.asm67 b L(odd)
76 srlx %o0, %g5, %o4 C new u, odd
77 L(odd): subcc v0, %o4, %o2 C v - u, set flags for branch and movcc
/netbsd-src/external/gpl3/gdb/dist/sim/testsuite/frv/interrupts/
H A Dfp_exception-fr550.cgs19 ; Make the the source register number odd at badst. We can't simply
20 ; code an odd register number because the assembler will catch the
28 ; Make the the dest register number odd at badld. We can't simply
29 ; code an odd register number because the assembler will catch the
/netbsd-src/external/lgpl3/gmp/dist/mpn/alpha/
H A Dcom.asm56 C The main loop handles an odd count of limbs, being two limbs loaded before
61 C entry sequence, and an increment of the pointers. For an odd size there's

12345678910>>...31