Searched refs:exp (Results 1 - 25 of 137) sorted by relevance

123456

/barrelfish-2018-10-04/lib/libc/tests/net/getaddrinfo/
H A DMakefile22 ${PACKAGE}DATA_FILES+= basics_v4.exp basics_v4v6.exp
23 ${PACKAGE}DATA_FILES+= no_host_v4.exp no_host_v4v6.exp
24 ${PACKAGE}DATA_FILES+= no_serv_v4.exp no_serv_v4v6.exp
25 ${PACKAGE}DATA_FILES+= sock_raw_v4.exp sock_raw_v4v6.exp
26 ${PACKAGE}DATA_FILES+= spec_fam_v4.exp spec_fam_v4v6.exp
[all...]
/barrelfish-2018-10-04/lib/msun/src/
H A Ds_isnormal.c39 return (u.bits.exp != 0 && u.bits.exp != 2047);
48 return (u.bits.exp != 0 && u.bits.exp != 255);
57 return (u.bits.exp != 0 && u.bits.exp != 32767);
H A Ds_isfinite.c39 return (u.bits.exp != 2047);
48 return (u.bits.exp != 255);
57 return (u.bits.exp != 32767);
H A Ds_frexpl.c44 switch (u.bits.exp) {
50 *ex = u.bits.exp - 0x4200;
51 u.bits.exp = 0x3ffe;
57 *ex = u.bits.exp - 0x3ffe;
58 u.bits.exp = 0x3ffe;
H A De_sqrtl.c45 u.bits.exp++;
61 u.bits.exp--;
88 if (u.bits.exp == LDBL_MAX_EXP * 2 - 1)
92 if ((u.bits.manh | u.bits.manl | u.bits.exp) == 0)
101 if (u.bits.exp == 0) {
112 if ((u.bits.exp - 0x3ffe) & 1) { /* n is odd. */
113 k += u.bits.exp - 0x3fff; /* 2k = n - 1. */
114 u.bits.exp = 0x3fff; /* u.e in [1,2). */
116 k += u.bits.exp - 0x4000; /* 2k = n - 2. */
117 u.bits.exp
[all...]
H A Ds_isnan.c42 return (u.bits.exp == 2047 && (u.bits.manl != 0 || u.bits.manh != 0));
52 return (u.bits.exp == 255 && u.bits.man != 0);
62 return (u.bits.exp == 32767 && (u.bits.manl != 0 || u.bits.manh != 0));
H A De_fmodl.c78 if((uy.bits.exp|uy.bits.manh|uy.bits.manl)==0 || /* y=0 */
79 (ux.bits.exp == BIAS + LDBL_MAX_EXP) || /* or x not finite */
80 (uy.bits.exp == BIAS + LDBL_MAX_EXP &&
83 if(ux.bits.exp<=uy.bits.exp) {
84 if((ux.bits.exp<uy.bits.exp) ||
96 if(ux.bits.exp == 0) { /* subnormal x */
98 ix = ux.bits.exp - (BIAS + 512);
100 ix = ux.bits.exp
[all...]
/barrelfish-2018-10-04/lib/libc/gen/
H A Dfrexp.c39 switch (u.bits.exp) {
45 *ex = u.bits.exp - 1536;
46 u.bits.exp = 1022;
52 *ex = u.bits.exp - 1022;
53 u.bits.exp = 1022;
H A Dfpclassify.c45 if (u.bits.exp == 0) {
50 if (u.bits.exp == 255) {
64 if (u.bits.exp == 0) {
69 if (u.bits.exp == 2047) {
83 if (u.bits.exp == 0) {
90 if (u.bits.exp == 2047) {
96 if (u.bits.exp == 32767) {
H A Disinf.c48 return (u.bits.exp == 2047 && u.bits.manl == 0 && u.bits.manh == 0);
57 return (u.bits.exp == 255 && u.bits.man == 0);
68 return (u.bits.exp == 2047 && u.bits.manl == 0 && u.bits.manh == 0);
70 return (u.bits.exp == 32767 && u.bits.manl == 0 && u.bits.manh == 0);
H A Disnan.c53 return (u.bits.exp == 2047 && (u.bits.manl != 0 || u.bits.manh != 0));
62 return (u.bits.exp == 255 && u.bits.man != 0);
/barrelfish-2018-10-04/lib/libc/include/
H A Dfpmath.h42 unsigned int exp :8; member in struct:IEEEf2bits::__anon968
46 unsigned int exp :8;
63 unsigned int exp :11; member in struct:IEEEd2bits::__anon969
70 unsigned int exp :11;
/barrelfish-2018-10-04/include/
H A Dfpmath.h42 unsigned int exp :8; member in struct:IEEEf2bits::__anon76
46 unsigned int exp :8;
63 unsigned int exp :11; member in struct:IEEEd2bits::__anon77
70 unsigned int exp :11;
/barrelfish-2018-10-04/lib/gdtoa/
H A Dstrtopd.c43 Long exp; local
51 k = strtodg(s, sp, fpi, &exp, bits);
52 ULtod((ULong*)d, bits, exp, k);
H A Dstrtord.c36 ULtod(L, bits, exp, k) ULong *L; ULong *bits; Long exp; int k;
38 ULtod(ULong *L, ULong *bits, Long exp, int k)
55 L[_0] = (bits[1] & ~0x100000) | ((exp + 0x3ff + 52) << 20);
82 Long exp; local
91 k = strtodg_l(s, sp, fpi, &exp, bits, locale);
92 ULtod((ULong*)d, bits, exp, k);
H A Dstrtorf.c36 ULtof(L, bits, exp, k) ULong *L; ULong *bits; Long exp; int k;
38 ULtof(ULong *L, ULong *bits, Long exp, int k)
49 L[0] = (bits[0] & 0x7fffff) | ((exp + 0x7f + 23) << 23);
77 Long exp; local
86 k = strtodg(s, sp, fpi, &exp, bits);
87 ULtof((ULong*)f, bits, exp, k);
H A DstrtorxL.c52 ULtoxL(L, bits, exp, k) ULong *L; ULong *bits; Long exp; int k;
54 ULtoxL(ULong *L, ULong *bits, Long exp, int k)
66 L[_0] = (exp + 0x3fff + 63) << 16;
96 Long exp; local
105 k = strtodg(s, sp, fpi, &exp, bits);
106 ULtoxL((ULong*)L, bits, exp, k);
H A DstrtoIQ.c42 Long exp[2]; local
49 k = strtoIg(s, sp, &fpi, exp, B, rv);
50 ULtoQ(L, B[0]->x, exp[0], rv[0]);
53 ULtoQ(M, B[1]->x, exp[1], rv[1]);
H A DstrtoId.c42 Long exp[2]; local
48 k = strtoIg(s, sp, &fpi, exp, B, rv);
49 ULtod((ULong*)f0, B[0]->x, exp[0], rv[0]);
52 ULtod((ULong*)f1, B[1]->x, exp[1], rv[1]);
H A DstrtoIdd.c46 Long exp[2]; local
52 k = strtoIg(s, sp, &fpi, exp, B, rv);
53 ULtodd((ULong*)f0, B[0]->x, exp[0], rv[0]);
56 ULtodd((ULong*)f1, B[1]->x, exp[1], rv[1]);
H A DstrtoIf.c42 Long exp[2]; local
48 k = strtoIg(s, sp, &fpi, exp, B, rv);
49 ULtof((ULong*)f0, B[0]->x, exp[0], rv[0]);
52 ULtof((ULong*)f1, B[1]->x, exp[1], rv[1]);
H A DstrtoIx.c42 Long exp[2]; local
49 k = strtoIg(s, sp, &fpi, exp, B, rv);
50 ULtox(L, B[0]->x, exp[0], rv[0]);
53 ULtox(M, B[1]->x, exp[1], rv[1]);
H A DstrtoIxL.c42 Long exp[2]; local
49 k = strtoIg(s, sp, &fpi, exp, B, rv);
50 ULtoxL(L, B[0]->x, exp[0], rv[0]);
53 ULtoxL(M, B[1]->x, exp[1], rv[1]);
H A Dstrtopdd.c47 Long exp; local
60 rv = strtodg(s, sp, fpi, &exp, bits);
71 | ((exp + 0x3ff + 105) << 20);
72 exp += 0x3ff + 52;
75 if (i >= exp) {
76 i = exp - 1;
77 exp = 0;
80 exp -= i;
88 if (i >= exp) {
89 i = exp
[all...]
H A DstrtoIg.c36 strtoIg(s00, se, fpi, exp, B, rvp) CONST char *s00; char **se; FPI *fpi; Long *exp; Bigint **B; int *rvp;
38 strtoIg(CONST char *s00, char **se, FPI *fpi, Long *exp, Bigint **B, int *rvp)
47 rv = strtodg(s00, se, fpi, exp, b->x);
52 e1 = exp[0];
127 exp[1] = exp[0];
128 exp[0] = e1;
134 exp[1] = e1;

Completed in 74 milliseconds

123456