Searched refs:ex (Results 1 - 19 of 19) sorted by relevance

/fuchsia/zircon/third_party/ulib/musl/src/fenv/
H A Dfeupdateenv.c4 int ex = fetestexcept(FE_ALL_EXCEPT); local
6 feraiseexcept(ex);
/fuchsia/zircon/third_party/ulib/musl/src/math/
H A Dremquo.c9 int ex = ux.i >> 52 & 0x7ff; local
18 if (uy.i << 1 == 0 || isnan(y) || ex == 0x7ff)
24 if (!ex) {
25 for (i = uxi << 12; i >> 63 == 0; ex--, i <<= 1)
27 uxi <<= -ex + 1;
42 if (ex < ey) {
43 if (ex + 1 == ey)
49 for (; ex > ey; ex--) {
64 ex
[all...]
H A Dremquof.c9 int ex = ux.i >> 23 & 0xff; local
18 if (uy.i << 1 == 0 || isnan(y) || ex == 0xff)
24 if (!ex) {
25 for (i = uxi << 9; i >> 31 == 0; ex--, i <<= 1)
27 uxi <<= -ex + 1;
42 if (ex < ey) {
43 if (ex + 1 == ey)
49 for (; ex > ey; ex--) {
64 ex
[all...]
H A Dfmod.c9 int ex = ux.i >> 52 & 0x7ff; local
18 if (uy.i << 1 == 0 || isnan(y) || ex == 0x7ff)
27 if (!ex) {
28 for (i = uxi << 12; i >> 63 == 0; ex--, i <<= 1)
30 uxi <<= -ex + 1;
45 for (; ex > ey; ex--) {
60 for (; uxi >> 52 == 0; uxi <<= 1, ex--)
64 if (ex > 0) {
66 uxi |= (uint64_t)ex << 5
[all...]
H A Dfmodf.c9 int ex = ux.i >> 23 & 0xff; local
15 if (uy.i << 1 == 0 || isnan(y) || ex == 0xff)
24 if (!ex) {
25 for (i = uxi << 9; i >> 31 == 0; ex--, i <<= 1)
27 uxi <<= -ex + 1;
42 for (; ex > ey; ex--) {
57 for (; uxi >> 23 == 0; uxi <<= 1, ex--)
61 if (ex > 0) {
63 uxi |= (uint32_t)ex << 2
[all...]
H A Dcoshl.c10 unsigned ex = u.i.se & 0x7fff; local
15 u.i.se = ex;
20 if (ex < 0x3fff - 1 || (ex == 0x3fff - 1 && w < 0xb17217f7)) {
21 if (ex < 0x3fff - 32) {
30 if (ex < 0x3fff + 13 || (ex == 0x3fff + 13 && w < 0xb17217f7)) {
H A Dsinhl.c10 unsigned ex = u.i.se & 0x7fff; local
17 u.i.se = ex;
21 if (ex < 0x3fff + 13 || (ex == 0x3fff + 13 && u.i.m >> 32 < 0xb17217f7)) {
23 if (ex < 0x3fff) {
24 if (ex < 0x3fff - 32)
H A Dremquol.c10 int ex = ux.i.se & 0x7fff; local
17 if (y == 0 || isnan(y) || ex == 0x7fff)
23 if (!ex) {
24 ux.i.se = ex;
26 ex = ux.i.se - 120;
35 if (ex >= ey) {
41 for (; ex > ey; ex--) {
62 ex = -120;
64 for (; zx >> 63 == 0; zx *= 2, ex
[all...]
H A Dtanhl.c10 unsigned ex = u.i.se & 0x7fff; local
16 u.i.se = ex;
20 if (ex > 0x3ffe || (ex == 0x3ffe && w > 0x8c9f53d5)) {
22 if (ex >= 0x3fff + 5) {
29 } else if (ex > 0x3ffd || (ex == 0x3ffd && w > 0x82c577d4)) {
H A Dfmodl.c10 int ex = ux.i.se & 0x7fff; local
14 if (y == 0 || isnan(y) || ex == 0x7fff)
16 ux.i.se = ex;
25 if (!ex) {
27 ex = ux.i.se - 120;
39 for (; ex > ey; ex--) {
57 for (; zx >> 63 == 0; zx *= 2, ex--)
66 for (; ex > ey; ex
[all...]
H A Dhypotl.c25 int ex, ey; local
31 ex = uy.i.se;
36 ex = ux.i.se;
42 if (ex == 0x7fff && isinf(y))
44 if (ex == 0x7fff || y == 0)
46 if (ex - ey > LDBL_MANT_DIG)
50 if (ex > 0x3fff + 8000) {
H A Dhypot.c26 int ex, ey; local
39 ex = ux.i >> 52;
46 if (ex == 0x7ff || uy.i == 0)
50 if (ex - ey > 64)
56 if (ex > 0x3ff + 510) {
/fuchsia/zircon/third_party/ulib/musl/third_party/math/
H A Datan2l.c30 int m, ex, ey; local
38 ex = ux.i.se & 0x7fff;
54 if (ex == 0x7fff) {
79 if (ex + 120 < ey || ey == 0x7fff)
82 if ((m & 2) && ey + 120 < ex) /* |y/x| < 0x1p-120, x<0 */
H A D__rem_pio2l.c79 int ex, ey, n, i; local
82 ex = u.i.se & 0x7fff;
92 if (ex - ey > ROUND1) { /* 2nd iteration needed, good to 141/248 (ld80/ld128) */
100 if (ex - ey > ROUND2) { /* 3rd iteration, good to 180/316 bits */
114 if (ex == 0x7fff) { /* x is inf or NaN */
129 n = __rem_pio2_large(tx, ty, ex - 0x3fff - 23, i + 1, NY);
H A D__rem_pio2.c55 int sign, n, ex, ey, i; local
129 ex = ix >> 20;
130 if (ex - ey > 16) { /* 2nd round, good to 118 bits */
138 if (ex - ey > 49) { /* 3rd round, good to 151 bits, covers all cases */
H A Dfmal.c164 int ex, ey, ez; local
181 xs = frexpl(x, &ex);
185 spread = ex + ey - ez;
244 spread = ex + ey;
H A Dfma.c332 int ex, ey, ez; local
349 xs = frexp(x, &ex);
353 spread = ex + ey - ez;
412 spread = ex + ey;
/fuchsia/zircon/third_party/ulib/musl/src/time/
H A Dstrptime.c11 const char* ex; local
102 ex = nl_langinfo(AM_STR);
103 len = strlen(ex);
104 if (!strncasecmp(s, ex, len)) {
108 ex = nl_langinfo(PM_STR);
109 len = strlen(ex);
110 if (!strncasecmp(s, ex, len)) {
203 ex = nl_langinfo(min + i);
204 len = strlen(ex);
205 if (strncasecmp(s, ex, le
[all...]
/fuchsia/zircon/third_party/uapp/dash/
H A Dgen-sources.sh22 set -ex

Completed in 89 milliseconds