Home
last modified time | relevance | path

Searched refs:ux (Results 1 – 25 of 42) sorted by relevance

12

/freebsd-12-stable/lib/msun/src/
Ds_nextafterl.c37 union IEEEl2bits ux, uy; in nextafterl() local
39 ux.e = x; in nextafterl()
42 if ((ux.bits.exp == 0x7fff && in nextafterl()
43 ((ux.bits.manh&~LDBL_NBIT)|ux.bits.manl) != 0) || in nextafterl()
49 ux.bits.manh = 0; /* return +-minsubnormal */ in nextafterl()
50 ux.bits.manl = 1; in nextafterl()
51 ux.bits.sign = uy.bits.sign; in nextafterl()
52 t = ux.e*ux.e; in nextafterl()
53 if(t==ux.e) return t; else return ux.e; /* raise underflow flag */ in nextafterl()
56 if(ux.bits.manl==0) { in nextafterl()
[all …]
Ds_modfl.c62 union IEEEl2bits ux; in modfl() local
65 ux.e = x; in modfl()
66 e = ux.bits.exp - LDBL_MAX_EXP + 1; in modfl()
69 *iptr = zero[ux.bits.sign]; in modfl()
72 if ((GETFRAC(ux.bits.manh, HIBITS - 1 - e) | in modfl()
73 ux.bits.manl) == 0) { /* X is an integer. */ in modfl()
75 return (zero[ux.bits.sign]); in modfl()
78 ux.bits.manh >>= HIBITS - 1 - e; in modfl()
79 ux.bits.manh <<= HIBITS - 1 - e; in modfl()
80 ux.bits.manl = 0; in modfl()
[all …]
Ds_remquol.c70 union IEEEl2bits ux, uy; in remquol() local
76 ux.e = x; in remquol()
78 sx = ux.bits.sign; in remquol()
80 ux.bits.sign = 0; /* |x| */ in remquol()
85 (ux.bits.exp == BIAS + LDBL_MAX_EXP) || /* or x not finite */ in remquol()
89 if(ux.bits.exp<=uy.bits.exp) { in remquol()
90 if((ux.bits.exp<uy.bits.exp) || in remquol()
91 (ux.bits.manh<=uy.bits.manh && in remquol()
92 (ux.bits.manh<uy.bits.manh || in remquol()
93 ux.bits.manl<uy.bits.manl))) { in remquol()
[all …]
De_fmodl.c67 union IEEEl2bits ux, uy; in fmodl() local
73 ux.e = x; in fmodl()
75 sx = ux.bits.sign; in fmodl()
79 (ux.bits.exp == BIAS + LDBL_MAX_EXP) || /* or x not finite */ in fmodl()
83 if(ux.bits.exp<=uy.bits.exp) { in fmodl()
84 if((ux.bits.exp<uy.bits.exp) || in fmodl()
85 (ux.bits.manh<=uy.bits.manh && in fmodl()
86 (ux.bits.manh<uy.bits.manh || in fmodl()
87 ux.bits.manl<uy.bits.manl))) { in fmodl()
90 if(ux.bits.manh==uy.bits.manh && ux.bits.manl==uy.bits.manl) { in fmodl()
[all …]
De_atan2l.c49 union IEEEl2bits ux, uy; in atan2l() local
57 ux.e = x; in atan2l()
58 expsignx = ux.xbits.expsign; in atan2l()
62 ((ux.bits.manh&~LDBL_NBIT)|ux.bits.manl)!=0) || /* x is NaN */ in atan2l()
66 if (expsignx==BIAS && ((ux.bits.manh&~LDBL_NBIT)|ux.bits.manl)==0) in atan2l()
80 if(exptx==0 && ((ux.bits.manh&~LDBL_NBIT)|ux.bits.manl)==0) in atan2l()
Ds_copysignl.c38 union IEEEl2bits ux, uy; in copysignl() local
40 ux.e = x; in copysignl()
42 ux.bits.sign = uy.bits.sign; in copysignl()
43 return (ux.e); in copysignl()
/freebsd-12-stable/tools/test/testfloat/
DsystemBugs.txt156 001.000001 07E.7FFFFE soft: 001.000000 ...ux syst: 001.000000 ....x
157 001.000001 87E.7FFFFE soft: 801.000000 ...ux syst: 801.000000 ....x
158 001.000002 07E.7FFFFC soft: 001.000000 ...ux syst: 001.000000 ....x
159 001.000002 87E.7FFFFC soft: 801.000000 ...ux syst: 801.000000 ....x
160 001.000004 07E.7FFFF8 soft: 001.000000 ...ux syst: 001.000000 ....x
162 001.000001 87E.7FFFFE soft: 801.000000 ...ux syst: 801.000000 ....x
163 001.000002 87E.7FFFFC soft: 801.000000 ...ux syst: 801.000000 ....x
164 001.000004 87E.7FFFF8 soft: 801.000000 ...ux syst: 801.000000 ....x
165 001.000008 87E.7FFFF0 soft: 801.000000 ...ux syst: 801.000000 ....x
166 001.000010 87E.7FFFE0 soft: 801.000000 ...ux syst: 801.000000 ....x
[all …]
Dtestfloat.txt410 800.7FFF00 87F.000100 soft: 001.000000 ....x syst: 001.000000 ...ux
411 081.000004 000.1FFFFF soft: 001.000000 ....x syst: 001.000000 ...ux
415 system result is the same but with flags `...ux'. All the items composed of
543 For example, the notation `...ux' indicates that the underflow and inexact
/freebsd-12-stable/usr.sbin/mpsutil/
Dmps_slot.c53 unsigned long ux; in slot_set() local
89 ux = strtoul(argv[4], &endptr, 0); in slot_set()
90 if (*endptr != '\0' || errno != 0 || ux > UINT32_MAX) { in slot_set()
94 status = ux; in slot_set()
/freebsd-12-stable/contrib/ntp/libntp/
Dntp_calendar.c428 uint32_t ux = (uint32_t)x; in i32mod7() local
429 return u32mod7((x < 0) ? (ux - 4u) : ux); in i32mod7()
438 uint32_t ux = (uint32_t)x; in i32fmod() local
440 ux = (sf ^ ux ) % d; in i32fmod()
441 return (d & sf) + (sf ^ ux); in i32fmod()
923 uint32_t ux = ((uint32_t)days << 2) | 3; in ntpcal_split_eradays() local
926 uday += (ux & 0xFFFFFu); /* lo dgt */ in ntpcal_split_eradays()
928 Q = (ux - uday) * 660721233u; /* exact div */ in ntpcal_split_eradays()
1864 uint32_t ux = ((uint32_t)weeks << 2) | 2; in isocal_split_eraweeks() local
1867 sw += (ux & 0xFFFFFu); /* lo dgt */ in isocal_split_eraweeks()
[all …]
/freebsd-12-stable/tools/tools/locale/tools/
Dmkwidths.pl51 my $ux = encode('UTF-32BE', decode('UTF-8', $k));
52 my $u = uc(unpack('H*', $ux));
Dutf8-rollup.pl61 my $ux = encode('UTF-32BE', decode('UTF-8', $k));
62 my $u = uc(unpack('H*', $ux));
/freebsd-12-stable/contrib/ntp/scripts/deprecated/
Dhpadjtime.sh6 hp-ux) case "$3" in
/freebsd-12-stable/usr.sbin/ntp/doc/hints/
DMakefile8 FILES= a-ux aix bsdi changes decosf1 decosf2 freebsd hpux linux mpeix \
/freebsd-12-stable/lib/libc/sparc64/fpu/
Dfpu_qp.c149 _QP_TTOQ(ux, x, u_long, -1, u_long, u.a[0])
156 _QP_QTOT(ux, x, u_long, &u.a)
/freebsd-12-stable/contrib/sendmail/cf/ostype/
Da-ux.m416 VERSIONID(`$Id: a-ux.m4,v 8.3 2013-11-22 20:51:15 ca Exp $')
/freebsd-12-stable/contrib/bearssl/src/ssl/
Dssl_hs_client.c1373 br_ssl_client_certificate ux; in br_ssl_hs_client_run() local
1376 CTX, auth_types, &ux); in br_ssl_hs_client_run()
1377 CTX->auth_type = (unsigned char)ux.auth_type; in br_ssl_hs_client_run()
1378 CTX->hash_id = (unsigned char)ux.hash_id; in br_ssl_hs_client_run()
1379 ENG->chain = ux.chain; in br_ssl_hs_client_run()
1380 ENG->chain_len = ux.chain_len; in br_ssl_hs_client_run()
Dssl_hs_client.t0956 br_ssl_client_certificate ux;
959 CTX, auth_types, &ux);
960 CTX->auth_type = (unsigned char)ux.auth_type;
961 CTX->hash_id = (unsigned char)ux.hash_id;
962 ENG->chain = ux.chain;
963 ENG->chain_len = ux.chain_len;
/freebsd-12-stable/contrib/atf/atf-c++/detail/
Dfs_test.cpp382 #define perms(ur, uw, ux, gr, gw, gx, othr, othw, othx) \ in ATF_TEST_CASE_BODY() argument
387 ATF_REQUIRE(fi.is_owner_executable() == ux); \ in ATF_TEST_CASE_BODY()
/freebsd-12-stable/contrib/tcsh/
DFAQ203 Tcsh compiled under hp/ux-10.x does not pass resource limits correctly when
204 ran on hp/ux-11.x systems.
/freebsd-12-stable/contrib/atf/atf-c/detail/
Dfs_test.c498 #define perms(ur, uw, ux, gr, gw, gx, othr, othw, othx) \ in ATF_TC_BODY() argument
503 ATF_REQUIRE(atf_fs_stat_is_owner_executable(&st) == ux); \ in ATF_TC_BODY()
/freebsd-12-stable/contrib/sendmail/cf/cf/
DMakefile186 ${CFDIR}/ostype/a-ux.m4 \
/freebsd-12-stable/contrib/file/magic/Magdir/
Dimages809 >>6 uleshort >0 \b, hotspot %ux
831 >>6 uleshort >0 \b, hotspot %ux
851 >>6 uleshort >0 \b, hotspot %ux
872 >>6 uleshort >0 \b, hotspot %ux
890 >>6 uleshort >0 \b, hotspot %ux
928 #>>>6 uleshort >0 \b, hotspot %ux
961 >>6 uleshort >0 \b, hotspot %ux
977 >>6 uleshort >0 \b, hotspot %ux
1000 >>6 uleshort x \b, hotspot %ux
1035 >>6 uleshort x \b, hotspot %ux
[all …]
Dconsole1144 >>>>0xB8 ulelong x (%ux
1147 >>>0xB8 ulelong x (%ux
/freebsd-12-stable/contrib/binutils/ld/
Dconfigure.tgt408 ns32k-pc532-mach* | ns32k-pc532-ux*) targ_emul=pc532macha ;;

12