| /freebsd-12-stable/lib/msun/src/ |
| D | s_nextafterl.c | 37 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 …]
|
| D | s_modfl.c | 62 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 …]
|
| D | s_remquol.c | 70 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 …]
|
| D | e_fmodl.c | 67 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 …]
|
| D | e_atan2l.c | 49 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()
|
| D | s_copysignl.c | 38 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/ |
| D | systemBugs.txt | 156 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 …]
|
| D | testfloat.txt | 410 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/ |
| D | mps_slot.c | 53 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/ |
| D | ntp_calendar.c | 428 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/ |
| D | mkwidths.pl | 51 my $ux = encode('UTF-32BE', decode('UTF-8', $k)); 52 my $u = uc(unpack('H*', $ux));
|
| D | utf8-rollup.pl | 61 my $ux = encode('UTF-32BE', decode('UTF-8', $k)); 62 my $u = uc(unpack('H*', $ux));
|
| /freebsd-12-stable/contrib/ntp/scripts/deprecated/ |
| D | hpadjtime.sh | 6 hp-ux) case "$3" in
|
| /freebsd-12-stable/usr.sbin/ntp/doc/hints/ |
| D | Makefile | 8 FILES= a-ux aix bsdi changes decosf1 decosf2 freebsd hpux linux mpeix \
|
| /freebsd-12-stable/lib/libc/sparc64/fpu/ |
| D | fpu_qp.c | 149 _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/ |
| D | a-ux.m4 | 16 VERSIONID(`$Id: a-ux.m4,v 8.3 2013-11-22 20:51:15 ca Exp $')
|
| /freebsd-12-stable/contrib/bearssl/src/ssl/ |
| D | ssl_hs_client.c | 1373 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()
|
| D | ssl_hs_client.t0 | 956 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/ |
| D | fs_test.cpp | 382 #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/ |
| D | FAQ | 203 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/ |
| D | fs_test.c | 498 #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/ |
| D | Makefile | 186 ${CFDIR}/ostype/a-ux.m4 \
|
| /freebsd-12-stable/contrib/file/magic/Magdir/ |
| D | images | 809 >>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 …]
|
| D | console | 1144 >>>>0xB8 ulelong x (%ux 1147 >>>0xB8 ulelong x (%ux
|
| /freebsd-12-stable/contrib/binutils/ld/ |
| D | configure.tgt | 408 ns32k-pc532-mach* | ns32k-pc532-ux*) targ_emul=pc532macha ;;
|