Searched refs:ux (Results 1 - 17 of 17) sorted by relevance

/freebsd-current/lib/msun/src/
H A Ds_nextafterl.c33 union IEEEl2bits ux, uy; local
35 ux.e = x;
38 if ((ux.bits.exp == 0x7fff &&
39 ((ux.bits.manh&~LDBL_NBIT)|ux.bits.manl) != 0) ||
45 ux.bits.manh = 0; /* return +-minsubnormal */
46 ux.bits.manl = 1;
47 ux.bits.sign = uy.bits.sign;
48 t = ux.e*ux
[all...]
H A Ds_modfl.c60 union IEEEl2bits ux; local
63 ux.e = x;
64 e = ux.bits.exp - LDBL_MAX_EXP + 1;
67 *iptr = zero[ux.bits.sign];
70 if ((GETFRAC(ux.bits.manh, HIBITS - 1 - e) |
71 ux.bits.manl) == 0) { /* X is an integer. */
73 return (zero[ux.bits.sign]);
76 ux.bits.manh >>= HIBITS - 1 - e;
77 ux.bits.manh <<= HIBITS - 1 - e;
78 ux
[all...]
H A Ds_copysignl.c36 union IEEEl2bits ux, uy; local
38 ux.e = x;
40 ux.bits.sign = uy.bits.sign;
41 return (ux.e);
H A De_fmodl.c63 union IEEEl2bits ux, uy; local
69 ux.e = x;
71 sx = ux.bits.sign;
75 (ux.bits.exp == BIAS + LDBL_MAX_EXP) || /* or x not finite */
79 if(ux.bits.exp<=uy.bits.exp) {
80 if((ux.bits.exp<uy.bits.exp) ||
81 (ux.bits.manh<=uy.bits.manh &&
82 (ux.bits.manh<uy.bits.manh ||
83 ux.bits.manl<uy.bits.manl))) {
86 if(ux
[all...]
H A Ds_remquol.c66 union IEEEl2bits ux, uy; local
72 ux.e = x;
74 sx = ux.bits.sign;
76 ux.bits.sign = 0; /* |x| */
81 (ux.bits.exp == BIAS + LDBL_MAX_EXP) || /* or x not finite */
85 if(ux.bits.exp<=uy.bits.exp) {
86 if((ux.bits.exp<uy.bits.exp) ||
87 (ux.bits.manh<=uy.bits.manh &&
88 (ux.bits.manh<uy.bits.manh ||
89 ux
[all...]
H A De_atan2l.c45 union IEEEl2bits ux, uy; local
53 ux.e = x;
54 expsignx = ux.xbits.expsign;
58 ((ux.bits.manh&~LDBL_NBIT)|ux.bits.manl)!=0) || /* x is NaN */
62 if (expsignx==BIAS && ((ux.bits.manh&~LDBL_NBIT)|ux.bits.manl)==0)
76 if(exptx==0 && ((ux.bits.manh&~LDBL_NBIT)|ux.bits.manl)==0)
/freebsd-current/contrib/ntp/scripts/deprecated/
H A Dhpadjtime.sh6 hp-ux) case "$3" in
/freebsd-current/usr.sbin/mpsutil/
H A Dmps_slot.c51 unsigned long ux; local
87 ux = strtoul(argv[4], &endptr, 0);
88 if (*endptr != '\0' || errno != 0 || ux > UINT32_MAX) {
92 status = ux;
/freebsd-current/tools/tools/locale/tools/
H A Dmkwidths.pl50 my $ux = encode('UTF-32BE', decode('UTF-8', $k));
51 my $u = uc(unpack('H*', $ux));
H A Dutf8-rollup.pl60 my $ux = encode('UTF-32BE', decode('UTF-8', $k));
61 my $u = uc(unpack('H*', $ux));
/freebsd-current/usr.sbin/ntp/doc/hints/
H A DMakefile8 FILES= a-ux aix bsdi changes decosf1 decosf2 freebsd hpux linux mpeix \
/freebsd-current/contrib/ntp/libntp/
H A Dntp_calendar.c428 uint32_t ux = (uint32_t)x; local
429 return u32mod7((x < 0) ? (ux - 4u) : ux);
438 uint32_t ux = (uint32_t)x; local
440 ux = (sf ^ ux ) % d;
441 return (d & sf) + (sf ^ ux);
923 uint32_t ux = ((uint32_t)days << 2) | 3; local
926 uday += (ux & 0xFFFFFu); /* lo dgt */
928 Q = (ux
1864 uint32_t ux = ((uint32_t)weeks << 2) | 2; local
[all...]
/freebsd-current/contrib/bmake/mk/sys/
H A DHP-UX.mk10 # nor does sys/param.h, so we'll use the existence of /hp-ux
11 .if exists("/hp-ux")
/freebsd-current/contrib/atf/atf-c++/detail/
H A Dfs_test.cpp382 #define perms(ur, uw, ux, gr, gw, gx, othr, othw, othx) \
387 ATF_REQUIRE(fi.is_owner_executable() == ux); \
/freebsd-current/contrib/sendmail/cf/cf/
H A DMakefile186 ${CFDIR}/ostype/a-ux.m4 \
/freebsd-current/contrib/atf/atf-c/detail/
H A Dfs_test.c498 #define perms(ur, uw, ux, gr, gw, gx, othr, othw, othx) \
503 ATF_REQUIRE(atf_fs_stat_is_owner_executable(&st) == ux); \
/freebsd-current/contrib/bearssl/src/ssl/
H A Dssl_hs_client.c1373 br_ssl_client_certificate ux; local
1376 CTX, auth_types, &ux);
1377 CTX->auth_type = (unsigned char)ux.auth_type;
1378 CTX->hash_id = (unsigned char)ux.hash_id;
1379 ENG->chain = ux.chain;
1380 ENG->chain_len = ux.chain_len;

Completed in 667 milliseconds